Go to the documentation of this file.00001
00023 #include <stdlib.h>
00024
00025 #include "utils/memory.h"
00026
00027 void
00028 ffree(void ** data)
00029 {
00030 if (NULL != *data) {
00031 free(*data);
00032 *data = NULL;
00033 }
00034 }
00035
00036