mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 03:28:19 +00:00
7 lines
204 B
C
7 lines
204 B
C
/* 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);
|