summaryrefslogtreecommitdiff
path: root/src/std/mem.h
diff options
context:
space:
mode:
authorOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-02-25 13:32:46 +1100
committerOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-02-25 13:32:46 +1100
commita1c3e27c53558fde411e63d8b3e3809c79789ea4 (patch)
tree12e96e2a3bf578a7c22216633910ffe757fd645f /src/std/mem.h
parent1d6be7975928e644e56422f3244aae5571f48ee0 (diff)
add TODO for future arena resize fn
Diffstat (limited to 'src/std/mem.h')
-rw-r--r--src/std/mem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/std/mem.h b/src/std/mem.h
index 36d30bd..c3ec61d 100644
--- a/src/std/mem.h
+++ b/src/std/mem.h
@@ -21,4 +21,5 @@ typedef struct arena {
arena arena_create(void* backing_buffer, size_t capacity);
void* arena_alloc(arena* a, size_t size);
void* arena_alloc_align(arena* a, size_t size, size_t align);
-void arena_free_all(arena* a); \ No newline at end of file
+void arena_free_all(arena* a);
+// TODO: arena_resize \ No newline at end of file