Refactor: Remove reduntant functions from string and memory module

This commit is contained in:
0x221E
2026-01-17 18:17:46 +01:00
parent 724b0047e6
commit b62d35a130
2 changed files with 1 additions and 7 deletions

View File

@@ -14,11 +14,6 @@ StringPool string_pool_create(Arena* a)
return sp;
}
void string_pool_reset(StringPool* ps)
{
// arena_reset(&ps->a);
}
StringView string_create(StringPool* sp, const char* s, size_t len)
{
assert(sp != NULL);