X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/39677ec76616fe4165ef92afb14db2bef2488e30..992956f2b7aaa5b7c632825d1582663b9781c036:/util.h

diff --git a/util.h b/util.h
index 8ba444b..f633b51 100644
--- a/util.h
+++ b/util.h
@@ -1,16 +1,8 @@
-/*
- * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
- * See LICENSE file for license details.
- */
+/* See LICENSE file for copyright and license details. */
 
-extern void error(char *errstr, ...);
-extern void *emallocz(unsigned int size);
-extern void *emalloc(unsigned int size);
-extern void *erealloc(void *ptr, unsigned int size);
-extern char *estrdup(const char *str);
-#define eassert(a) do { \
-		if(!(a)) \
-			failed_assert(#a, __FILE__, __LINE__); \
-	} while (0)
-void failed_assert(char *a, char *file, int line);
-void swap(void **p1, void **p2);
+#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);