Development back on the trunk!
[crack-attack.git] / enet / include / enet / utility.h
blobe48a476be3b5a61c0e81c509ec00472daa66496e
1 /**
2 @file utility.h
3 @brief ENet utility header
4 */
5 #ifndef __ENET_UTILITY_H__
6 #define __ENET_UTILITY_H__
8 #define ENET_MAX(x, y) ((x) > (y) ? (x) : (y))
9 #define ENET_MIN(x, y) ((x) < (y) ? (x) : (y))
11 #endif /* __ENET_UTILITY_H__ */