CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
compare.h
Go to the documentation of this file.
1
20
21#pragma once
22
23#define clamplow(val, low) ((val) > (low) ? (val) : (low))
24#define clamphigh(val, high) ((val) < (high) ? (val) : (high))
25#define clamp(val, low, high) ((val) > (low) ? ((val) < (high) ? (val) : (high)) : (low))
26
27#ifndef min
28#define min(a, b) ((a) < (b) ? (a) : (b))
29#define max(a, b) ((a) > (b) ? (a) : (b))
30#endif
31