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