ddnet/src/engine/memheap.h

6 lines
133 B
C
Raw Normal View History

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