mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-22 09:38:56 +08:00
19 lines
403 B
C
19 lines
403 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef MINMAX_H
|
|
#define MINMAX_H
|
|
|
|
#ifndef V_min
|
|
#define V_min(a,b) (((a) < (b)) ? (a) : (b))
|
|
#endif
|
|
#ifndef V_max
|
|
#define V_max(a,b) (((a) > (b)) ? (a) : (b))
|
|
#endif
|
|
|
|
#endif // MINMAX_H
|