about summary refs log tree commit diff
path: root/src/engine/memheap.h
blob: 414db5e85c0dc3c891228c1abc064e5eb2a70645 (plain)
1
2
3
4
5

typedef struct HEAP_t HEAP;
HEAP *memheap_create();
void memheap_destroy(HEAP *heap);
void *memheap_allocate(HEAP *heap, int size);