mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-27 04:00:42 +00:00
13 lines
237 B
C
13 lines
237 B
C
|
/**
|
||
|
@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__ */
|
||
|
|