diff options
author | justsaumit <justsaumit@draconyan.xyz> | 2022-03-02 06:03:31 +0530 |
---|---|---|
committer | justsaumit <justsaumit@draconyan.xyz> | 2022-03-02 06:03:31 +0530 |
commit | 66f5bfaef43451fc99758947e58794490308df6e (patch) | |
tree | ad0c283e870c086a8ac23aae08ec8259badf283e /util.h | |
parent | 14a894befc1ef03bf7523499dc54c7129c9e1737 (diff) |
clean
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -1,8 +0,0 @@ -/* 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); |