Files
CWasm/cwasm.c

23 lines
438 B
C

/*
File: main.c
Author: Taylor Robbins
Date: 08\28\2025
Description:
** This file serves as the compilable file for all of CWasm. It may be #included by the app.c file
*/
#include "cwasm.h"
#include "std/src/std_main.c"
#include "cwasm_webgl_js_imports.h"
#include "cwasm_webgl_constants.h"
#include "cwasm_arena.c"
#include "cwasm_debug.c"
void InitializeCWasm(u32 scratchArenasSize)
{
InitGlobalArenas(scratchArenasSize);
}