Reorganization

This commit is contained in:
Krzosa Karol
2024-01-12 10:10:09 +01:00
parent f68500a804
commit dde2334f95
34 changed files with 31 additions and 31 deletions

20
core.c
View File

@@ -1,22 +1,22 @@
#include "core.h"
#define STB_SPRINTF_IMPLEMENTATION
#include "code/stb_sprintf.h"
#include "standalone_modules/stb_sprintf.h"
#define IO_VSNPRINTF stbsp_vsnprintf
#define IO_SNPRINTF stbsp_snprintf
#include "code/io.c"
#include "standalone_modules/io.c"
#define MA_ASSERT(x) IO_Assert(x)
#include "code/arena.c"
#include "standalone_modules/arena.c"
#define RE_ASSERT(x) IO_Assert(x)
#include "code/regex.c"
#include "code/unicode.c"
#include "standalone_modules/regex.c"
#include "standalone_modules/unicode.c"
#define S8_VSNPRINTF stbsp_vsnprintf
#define S8_ALLOCATE(allocator, size) MA_PushSize(allocator, size)
#define S8_ASSERT(x) IO_Assert(x)
#define S8_MemoryCopy MA_MemoryCopy
#include "code/string.c"
#include "standalone_modules/string.c"
#define MU_ASSERT IO_Assert
#include "code/multimedia.h"
#include "code/hash.c"
#include "code/load_library.c"
#include "code/filesystem.c"
#include "standalone_modules/multimedia.h"
#include "standalone_modules/hash.c"
#include "standalone_modules/load_library.c"
#include "filesystem/filesystem.c"