summaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorBert Münnich <ber.t@gmx.com>2011-09-26 21:53:52 +0200
committerBert Münnich <ber.t@gmx.com>2011-09-26 21:53:52 +0200
commitd721d8453e6c0ff7112e8228eb58aa438d1f7f1a (patch)
tree449e393e7bb614b150f4c72b3998ae5ced95e201 /util.h
parentd08408e94250425e677e1ab33d917e05e229faa2 (diff)
downloadnsxiv-d721d8453e6c0ff7112e8228eb58aa438d1f7f1a.tar.zst
Added STREQ macro
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)