memory.c 160 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include <stdlib.h> #include "utils/memory.h" void ffree(void ** data) { if (NULL != *data) { free(*data); *data = NULL; } } // vim: set ts=4 sw=4: