Initial commit

This commit is contained in:
2026-08-07 18:33:50 -05:00
commit f82f8288cf
11 changed files with 1989 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
extern int test_libc_allocator();
extern int test_platform_allocator();
extern int test_arena_allocator();
int main(void) {
return !(
test_libc_allocator() &&
test_platform_allocator() &&
test_arena_allocator()
);
}