Server 0.0.1
HTTP/REST server implementation

include/utils/memory.h

Go to the documentation of this file.
00001 
00023 #ifndef __UTILS_MEMORY_H__
00024 #define __UTILS_MEMORY_H__
00025 
00026 #define CSTRA(val)      val, sizeof(val)-1 //!< Const STRing Argument
00027 
00028 #define FREE(val)       (ffree((void**)&(val)))
00029 
00030 void ffree(void **);
00031 
00032 #endif // __UTILS_MEMORY_H__
00033 
00034 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines