summaryrefslogtreecommitdiff
path: root/sd/dwm-6.2/util.h
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2021-06-19 10:42:34 -0500
committerstkhan <personal@slickd.xyz>2021-06-19 10:42:34 -0500
commite2dbb81b9144fd8be2eb89617db38fd361079fed (patch)
tree77cdbe3673b967c594327c878379aaae9c56daaf /sd/dwm-6.2/util.h
parente8df46e3babbb943a729935786a0d55dbe0e2028 (diff)
1.0.0b2
Former-commit-id: 7e8e8ad1998285a5b38c4bedd38acd0bbe37de4d
Diffstat (limited to 'sd/dwm-6.2/util.h')
-rw-r--r--sd/dwm-6.2/util.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/sd/dwm-6.2/util.h b/sd/dwm-6.2/util.h
new file mode 100644
index 0000000..f633b51
--- /dev/null
+++ b/sd/dwm-6.2/util.h
@@ -0,0 +1,8 @@
+/* See LICENSE file for copyright and license details. */
+
+#define MAX(A, B) ((A) > (B) ? (A) : (B))
+#define MIN(A, B) ((A) < (B) ? (A) : (B))
+#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
+
+void die(const char *fmt, ...);
+void *ecalloc(size_t nmemb, size_t size);