cf_min¶ Category: math GitHub: cute_math.h Returns the minimum of two values. #define cf_min(a, b) ((a) < (b) ? (a) : (b)) Related Pages¶ cf_max