ddnet/src/engine/e_memheap.h

7 lines
213 B
C
Raw Normal View History

2007-11-25 19:42:40 +00:00
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
typedef struct HEAP_t HEAP;
HEAP *memheap_create();
void memheap_destroy(HEAP *heap);
2008-01-20 09:53:15 +00:00
void *memheap_allocate(HEAP *heap, unsigned int size);