Go to the documentation of this file. 8 #ifndef hubbub_utils_h_ 9 #define hubbub_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)) 29 #define N_ELEMENTS(x) sizeof((x)) / sizeof((x)[0])