Libparserutils
|
Go to the source code of this file.
Macros | |
#define | max(a, b) ((a)>(b)?(a):(b)) |
#define | min(a, b) ((a)<(b)?(a):(b)) |
#define | SLEN(s) (sizeof((s)) - 1) /* -1 for '\0' */ |
#define | UNUSED(x) ((void)(x)) |
#define | N_ELEMENTS(s) (sizeof((s)) / sizeof((s)[0])) |
#define | ALIGN(val) (((val) + 3) & ~(3)) |