Parsing exprs, enum_decls, Introduce intern table, symbol table

This commit is contained in:
Krzosa Karol
2022-04-29 11:22:10 +02:00
parent d462892e14
commit 9cbbb4d616
20 changed files with 1831 additions and 335 deletions

9
os.h Normal file
View File

@@ -0,0 +1,9 @@
typedef struct OS_Memory{
void *data;
SizeU commit;
SizeU reserve;
}OS_Memory;
function OS_Memory os_reserve(SizeU size);
function void os_commit(OS_Memory *m, SizeU size);