Codebase list libcryptx-perl / bc543bd
MIN|MAX macro Karel Miko 7 years ago
1 changed file(s) with 4 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
1717 #include <tommath.h>
1818 #include <ctype.h>
1919
20 #ifndef MIN
2021 #define MIN(x,y) (((x) < (y)) ? (x) : (y))
22 #endif
2123
24 #ifndef MAX
2225 #define MAX(x,y) (((x) > (y)) ? (x) : (y))
26 #endif
2327
2428 #ifdef __cplusplus
2529 extern "C" {