aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'util.h')
-rw-r--r--util.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/util.h b/util.h
index 8155613..68e534e 100644
--- a/util.h
+++ b/util.h
@@ -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)