1 2 3 4 5 6 7 8 9 10 11
#include <stdio.h> #include "memory.h" void* check_after_allocation(const char *funcname, void *ptr){ if(ptr == NULL){ perror(funcname); exit(1); } return ptr; }