about summary refs log tree commit diff
path: root/src/engine/memheap.h
blob: 83082046f30882b48044f580fc7953a499789119 (plain)
1
2
3
4
5
6
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */

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