Add dwm as subfolder

This commit is contained in:
Hektor Misplon
2020-05-07 00:43:33 +00:00
parent 700f2012f0
commit 162c36d7c1
118 changed files with 4989 additions and 1 deletions

8
.suckless/dwm/util.h Normal file
View File

@@ -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);