Project restructuring to support the new direction

This commit is contained in:
2025-08-28 13:02:37 -05:00
parent d109b6f374
commit 330aca002f
11 changed files with 89 additions and 99 deletions

16
example/c/gc.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef _GC_H_
#define _GC_H_
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "common.h"
void gc_init();
cons_t *alloc();
void gc_run();
void gc_loop();
void relocate(cons_t*);
#endif // _GC_H_