summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorAnna (navi) Figueiredo Gomes <navi@vlhl.dev>2025-11-20 23:39:18 +0100
committerAnna (navi) Figueiredo Gomes <navi@vlhl.dev>2025-11-20 23:39:18 +0100
commit1e637faf644a5f2262a83ca1394faa3003c3d1e3 (patch)
tree774e30f5eda251a2326d83800fd2d76088815ddc /src/util.h
downloadwaypad-main.tar.xz
init (temp)HEADmastermain
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
new file mode 100644
index 0000000..15b2323
--- /dev/null
+++ b/src/util.h
@@ -0,0 +1,7 @@
+#ifndef _UTIL_H_
+#define _UTIL_H_
+
+#define lenghtof(arr) (sizeof(arr) / sizeof(*arr))
+#define todo() warn("%s unimplemented.", __func__)
+
+#endif