1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-07-03 11:43:40 +00:00
Dotfiles/dwm-6.2/util.h
2020-10-07 18:12:28 +03:00

9 lines
305 B
C

/* 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);