summaryrefslogtreecommitdiff
path: root/src/std/mem.h
diff options
context:
space:
mode:
authorJoshua Rowe <17525998+omnisci3nce@users.noreply.github.com>2024-02-25 13:49:24 +1100
committerGitHub <noreply@github.com>2024-02-25 13:49:24 +1100
commitfc287c6e4f958242a4272da5cb1704e3e789fe07 (patch)
tree47c8d1fdf271c41f930aaa5d0373a834b1c9e665 /src/std/mem.h
parent64f23d9726c55d5c965f123ffc5b6ca47ec1f475 (diff)
parenta1c3e27c53558fde411e63d8b3e3809c79789ea4 (diff)
Merge pull request #1 from omnisci3nce/cel-18-arena-allocator
CEL-18 arena allocator
Diffstat (limited to 'src/std/mem.h')
-rw-r--r--src/std/mem.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/std/mem.h b/src/std/mem.h
index 74222a7..c3ec61d 100644
--- a/src/std/mem.h
+++ b/src/std/mem.h
@@ -9,6 +9,17 @@
*/
#pragma once
-#include "defines.h"
+#include <stddef.h>
-typedef void* (*alloc)(size_t amount); \ No newline at end of file
+// Inspired by https://nullprogram.com/blog/2023/09/27/
+typedef struct arena {
+ char* begin;
+ char* curr;
+ char* end;
+} 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);
+// TODO: arena_resize \ No newline at end of file