Loading...
Searching...
No Matches
Go to the documentation of this file.
10#define _ZW_TYPEDEFS_H_
24#define ZW_WEAK __attribute__((weak))
32#define NULL ((void*)0)
40#define NO_RETURN __attribute__((noreturn))
46#define VOID_CALLBACKFUNC(completedFunc) void (*completedFunc)
49#define IS_NULL(x) (NULL == x)
50#define NON_NULL(x) (NULL != x)
57#define UIP_HTONL(x) ( ((x >> 24) & 0x000000FF) | ((x >> 8) & 0x0000FF00) | ((x << 8 ) & 0x00FF0000) | ((x << 24) & 0xFF000000) )