mirror of
https://github.com/eRgo35/dots.git
synced 2025-12-18 00:16:10 +01:00
more flexipatch
This commit is contained in:
@@ -1,7 +1,11 @@
|
||||
/* See LICENSE file for copyright and license details. */
|
||||
|
||||
#ifndef MAX
|
||||
#define MAX(A, B) ((A) > (B) ? (A) : (B))
|
||||
#endif
|
||||
#ifndef MIN
|
||||
#define MIN(A, B) ((A) < (B) ? (A) : (B))
|
||||
#endif
|
||||
#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
|
||||
|
||||
void die(const char *fmt, ...);
|
||||
|
||||
Reference in New Issue
Block a user