You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
266 B
13 lines
266 B
|
|
#include <stdint.h>
|
|
|
|
struct Arena {
|
|
void *root_freespace;
|
|
void *root_treealloc;
|
|
void *(*get_new_region)(uintptr_t);
|
|
void (*error)(char*);
|
|
};
|
|
|
|
void unalloc(struct Arena *arena, void *addr);
|
|
void *alloc(struct Arena *arena, uintptr_t size, uintptr_t align);
|
|
|