diff options
author | Eric Pruitt <eric.pruitt@gmail.com> | 2015-03-05 20:26:11 -0800 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2015-03-13 21:44:22 +0100 |
commit | 14343e69cc596b847f71f1e825d3019ab1a29aa8 (patch) | |
tree | bf7b0bede9b451f7f8e78e0d47fda511201622d8 /util.h | |
parent | 35db6d8afc3fd9f80166feac6c1e4adf71d553c3 (diff) |
Add Xft and follback-fonts support to graphics lib
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2,5 +2,6 @@ #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 *errstr, ...); |