1 2 3 4 5 6 7
#ifndef NB_MEM_H #define NB_MEM_H void* nb_alloc(int size); void nb_free(void* mem); #endif