Artifact 07f3630b26417935a0e3167e21c4a50854be23af26e7e0f657ad4290c9a98ed7:
- File enet/include/enet/utility.h — part of check-in [ea7418102a] at 2024-07-13 14:22:15 on branch trunk — Import cube_2005_08_29_src_zlib.zip (user: js, size: 237) [annotate] [blame] [check-ins using]
/** @file utility.h @brief ENet utility header */ #ifndef __ENET_UTILITY_H__ #define __ENET_UTILITY_H__ #define ENET_MAX(x, y) ((x) > (y) ? (x) : (y)) #define ENET_MIN(x, y) ((x) < (y) ? (x) : (y)) #endif /* __ENET_UTILITY_H__ */