nus/cs2106/labs/lab4/linkedlist/mymalloc.h

6 lines
133 B
C

#define MEMSIZE 64 * 1024 // Size of memory in bytes
long get_index(void *ptr);
void *mymalloc(size_t);
void myfree(void *);