diff options
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -30,7 +30,9 @@ #define MAX(a,b) ((a) > (b) ? (a) : (b)) #endif -#define ARRLEN(a) (sizeof(a) / sizeof(a[0])) +#define ARRLEN(a) (sizeof(a) / sizeof((a)[0])) + +#define STREQ(a,b) (!strcmp((a), (b))) #define TIMEDIFF(t1,t2) (((t1)->tv_sec - (t2)->tv_sec) * 1000 + \ ((t1)->tv_usec - (t2)->tv_usec) / 1000) |