From 546e29a6f439146338f320240cab9b3b760eecb7 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Fri, 25 Apr 2025 21:43:13 -0400 Subject: load compressor map descriptions from toml files --- util.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'util.h') diff --git a/util.h b/util.h index 2752bd4..0a48edd 100644 --- a/util.h +++ b/util.h @@ -1 +1,3 @@ #define nelem(arr) (sizeof(arr)/sizeof(arr[0])) +#define min(a, b) ((a < b) ? a : b) +#define max(a, b) ((a > b) ? a : b) -- cgit v1.2.3