summaryrefslogtreecommitdiff
path: root/dwm/util.h
diff options
context:
space:
mode:
authorbacalhau <bacalhau@based.pt>2025-06-08 15:55:29 +0100
committerbacalhau <bacalhau@based.pt>2025-06-08 15:55:29 +0100
commita3f76f49addeecb6138ee2ae1d089c60d2df04a7 (patch)
tree9b5ea1d3ef854d19f8239967c21d728edb27a397 /dwm/util.h
parent3ab7348ee95f2918cb9ae299290a812252663923 (diff)
added files (for eel)HEADmaster
Diffstat (limited to 'dwm/util.h')
-rwxr-xr-xdwm/util.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/dwm/util.h b/dwm/util.h
new file mode 100755
index 0000000..c0a50d4
--- /dev/null
+++ b/dwm/util.h
@@ -0,0 +1,9 @@
+/* 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))
+#define LENGTH(X) (sizeof (X) / sizeof (X)[0])
+
+void die(const char *fmt, ...);
+void *ecalloc(size_t nmemb, size_t size);