aboutsummaryrefslogtreecommitdiff
path: root/dwm/util.h
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-09-16 23:03:20 +0200
committerpml68 <contact@pml68.dev>2025-09-16 23:05:32 +0200
commit74ba864107d69b7674b14d5f6cb6a173987c0793 (patch)
tree537fc12713850f56a2a5cbfce5c191aa308d4340 /dwm/util.h
parentchore: sync st with upstream (diff)
downloadsuckless-setup-74ba864107d69b7674b14d5f6cb6a173987c0793.tar.gz
chore: sync dwm with upstream
Diffstat (limited to '')
-rw-r--r--dwm/util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/dwm/util.h b/dwm/util.h
index f633b51..c0a50d4 100644
--- a/dwm/util.h
+++ b/dwm/util.h
@@ -3,6 +3,7 @@
#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);