summary refs log tree commit diff
path: root/database.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-12-16 21:13:38 -0500
committerJune McEnroe <june@causal.agency>2019-12-16 21:13:38 -0500
commit17c5a70c9632a12bb5741ea6950b2d282bfca278 (patch)
treefa765e301d94bf553c0368589841d6981d9cc210 /database.h
parentStyle cleanup (diff)
downloadlitterbox-17c5a70c9632a12bb5741ea6950b2d282bfca278.tar.gz
litterbox-17c5a70c9632a12bb5741ea6950b2d282bfca278.zip
Move ARRAY_LEN to database.h
Diffstat (limited to 'database.h')
-rw-r--r--database.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/database.h b/database.h
index 1299ab0..6d705db 100644
--- a/database.h
+++ b/database.h
@@ -26,6 +26,7 @@
 #include <sysexits.h>
 
 #define SQL(...) #__VA_ARGS__
+#define ARRAY_LEN(a) (sizeof(a) / sizeof((a)[0]))
 
 #define DATABASE_PATH "litterbox/litterbox.sqlite"