diff options
author | Bradley Taunt <bt@btxx.org> | 2024-01-18 12:49:32 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-01-18 12:49:32 -0500 |
commit | b76b1975e2b4d8c7f9910e8fbc9e50386b64bd9c (patch) | |
tree | 3abc2a0e9430bee7db072672dd376271933973d5 /util.h |
Diffstat (limited to 'util.h')
-rwxr-xr-x | util.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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); |