v1.2.0 Release

This commit is contained in:
2026-04-08 20:59:58 +02:00
parent 8ae06f5a95
commit d84e7bf067
2 changed files with 142 additions and 3 deletions

3
test.c
View File

@@ -49,6 +49,9 @@ int main(void)
arena_print(a);
char *str = arena_sprintf(&a, "Formatted string %x", 0xCAFE);
printf("%s\n", str);
arena_free(&a);
return 0;
}