1 2 3 4 5 6 7 8 9
#ifndef _H_MEM #define _H_MEM #include <stdlib.h> void* my_calloc(size_t num, size_t size); void my_free(void* ptr); #endif