diff options
| author | Syndamia <kamen@syndamia.com> | 2026-04-21 19:48:36 +0300 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2026-04-21 19:48:36 +0300 |
| commit | 3b543388b988702c984d80a35e97ea134d9ed481 (patch) | |
| tree | 78e9446efd4e9703f4fa8cb56602398b5dd763bd /GlobalArena.h | |
| parent | 65452e3680e411da643bd03107637c2d9ef01312 (diff) | |
| download | foollib-3b543388b988702c984d80a35e97ea134d9ed481.tar foollib-3b543388b988702c984d80a35e97ea134d9ed481.tar.gz foollib-3b543388b988702c984d80a35e97ea134d9ed481.zip | |
feat!: Function rename and standardize
Diffstat (limited to 'GlobalArena.h')
| -rw-r--r-- | GlobalArena.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/GlobalArena.h b/GlobalArena.h index 219e743..8c2b524 100644 --- a/GlobalArena.h +++ b/GlobalArena.h @@ -7,11 +7,9 @@ // Global bump arena extern BumpArena g_arena; -void* GBalloc(usize size); -int GBresizeable(void* ptr); -Result GBresize(usize size); -Result GBfree(); - -Array Array_Gnew(usize element_size, usize length); +void* BG_alloc(usize size); +int BG_resizeable(void* ptr); +Result BG_resize(usize size); +Result BG_free(); #endif /* _GLOBAL_ARENA */ |
