Loading...
Searching...
No Matches
Go to the documentation of this file.
8#ifndef dom_utils_utils_h_
9#define dom_utils_utils_h_
12#define max(a,b) ((a)>(b)?(a):(b))
16#define min(a,b) ((a)<(b)?(a):(b))
21#define SLEN(s) (sizeof((s)) - 1)
25#define UNUSED(x) ((void)(x))