Skip to content

cf_max

Category: math
GitHub: cute_math.h


Returns the maximum of two values.

#define cf_max(a, b) ((a) > (b) ? (a) : (b))

cf_min