💾 Archived View for gemini.rmf-dev.com › repo › Vaati › fdwm › files › f633b5173ad2b5058d48574d5a18f… captured on 2023-03-20 at 18:31:44. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

🚧 View Differences

-=-=-=-=-=-=-

0 /* See LICENSE file for copyright and license details. */

1

2 #define MAX(A, B) ((A) > (B) ? (A) : (B))

3 #define MIN(A, B) ((A) < (B) ? (A) : (B))

4 #define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))

5

6 void die(const char *fmt, ...);

7 void *ecalloc(size_t nmemb, size_t size);

8