06/include/macroses.h

1 line
81 B
C

#define CLAMP(min, value, max) (value > min) ? min : (max < value) ? max : value;