summaryrefslogtreecommitdiffstats
path: root/libs/enet/include/enet/utility.h
blob: e48a476be3b5a61c0e81c509ec00472daa66496e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/** 
 @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__ */