defs.h (373B)
1 /* This program is licensed under the terms of GNU GPL v3 or (at your option) 2 * any later version. Copyright (C) 2021-2025 Страхиња Радић. 3 * See the file LICENSE for exact copyright and license details. */ 4 5 #define MAXBUF 1024 6 #define MAXINPUTBUF 4096 7 #define MAXPATH 1024 8 #define MAX(a,b) ((a) > (b)) ? (a) : (b) 9 #define MIN(a,b) ((a) < (b)) ? (a) : (b)