h4-advanced-allocators #9

Merged
Mineplay merged 3 commits from h4-advanced-allocators into main 2025-04-19 06:53:13 -05:00
Showing only changes of commit 79ea8dda64 - Show all commits

View file

@ -31,6 +31,7 @@
void *hallocy_allocate(size_t size, bool zero_memory);
static inline void *hallocy_malloc(size_t size) { return hallocy_allocate(size, false); }
static inline void *hallocy_calloc(size_t size, size_t count) { return hallocy_allocate(size * count, true); }
HallocyError hallocy_free(void *pointer);
#endif