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