about summary refs log tree commit diff
path: root/src/engine/e_memheap.h
blob: af3c0b299a0eea165e7c38e5f49fdfc2f946d9f6 (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, unsigned int size);