1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-22 17:47:38 +08:00
hl2sdk/public/minmax.h

19 lines
403 B
C
Raw Normal View History

2013-06-27 06:22:04 +08:00
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef MINMAX_H
#define MINMAX_H
2020-05-19 08:46:25 +08:00
#ifndef V_min
#define V_min(a,b) (((a) < (b)) ? (a) : (b))
2013-06-27 06:22:04 +08:00
#endif
2020-05-19 08:46:25 +08:00
#ifndef V_max
#define V_max(a,b) (((a) > (b)) ? (a) : (b))
2013-06-27 06:22:04 +08:00
#endif
#endif // MINMAX_H