Server 0.0.1
HTTP/REST server implementation

src/utils/memory.c

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 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines