minmax.h 94 Bytes Raw Blame History Permalink 1 2 #define MY_MIN(A, B) (((A) < (B)) ? (A) : (B)) #define MY_MAX(A, B) (((A) < (B)) ? (B) : (A))