summaryrefslogtreecommitdiff
path: root/dwm/util.h.orig
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.orig
parent3ab7348ee95f2918cb9ae299290a812252663923 (diff)
added files (for eel)HEADmaster
Diffstat (limited to 'dwm/util.h.orig')
-rwxr-xr-xdwm/util.h.orig10
1 files changed, 10 insertions, 0 deletions
diff --git a/dwm/util.h.orig b/dwm/util.h.orig
new file mode 100755
index 0000000..d41449f
--- /dev/null
+++ b/dwm/util.h.orig
@@ -0,0 +1,10 @@
+/* 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);
+size_t split(char *s, const char* sep, char **pbegin, size_t maxcount);