Skip to content

cf_min

Category: math
GitHub: cute_math.h


Returns the minimum of two values.

#define cf_min(a, b) ((a) < (b) ? (a) : (b))

cf_max