summaryrefslogtreecommitdiff
path: root/dwm/util.h
diff options
context:
space:
mode:
authortslil clingman <>2020-10-16 20:53:39 -0400
committertslil clingman <>2020-10-16 20:53:39 -0400
commitae0602777a5739796f4bf7f2f8d47e5dfede7af4 (patch)
tree8fc0bcdaf3ed89b8865c16055b1bc3931e6eea50 /dwm/util.h
parentc780db9db9c51d7004682d2b58c303b5c417f621 (diff)
Tracking dwm config
Diffstat (limited to 'dwm/util.h')
-rw-r--r--dwm/util.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/dwm/util.h b/dwm/util.h
new file mode 100644
index 0000000..f633b51
--- /dev/null
+++ b/dwm/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);