about summary refs log tree commit diff
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
parentStyle cleanup (diff)
downloadlitterbox-17c5a70c9632a12bb5741ea6950b2d282bfca278.tar.gz
litterbox-17c5a70c9632a12bb5741ea6950b2d282bfca278.zip
Move ARRAY_LEN to database.h
-rw-r--r--database.h1
-rw-r--r--unscoop.c2
2 files changed, 1 insertions, 2 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"
 
diff --git a/unscoop.c b/unscoop.c
index f2d79cb..5aecf19 100644
--- a/unscoop.c
+++ b/unscoop.c
@@ -28,8 +28,6 @@
 
 #include "database.h"
 
-#define ARRAY_LEN(a) (sizeof(a) / sizeof((a)[0]))
-
 enum { ParamCap = 8 };
 
 struct Matcher {