011d6c98f0
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@11598 178a84e3-b1eb-0310-8ba1-8eac791a3b58
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__ */
|
|
|