#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
Go to the source code of this file.
Macros | |
#define | ZW_WEAK __attribute__((weak)) |
#define | EOF (-1) |
#define | NULL ((void*)0) |
#define | NO_RETURN |
#define | VOID_CALLBACKFUNC(completedFunc) void (*completedFunc) |
#define | IS_NULL(x) (NULL == x) |
#define | NON_NULL(x) (NULL != x) |
#define | UIP_HTONL(x) ( ((x >> 24) & 0x000000FF) | ((x >> 8) & 0x0000FF00) | ((x << 8 ) & 0x00FF0000) | ((x << 24) & 0xFF000000) ) |