macros.h 93 B

12
  1. #define my_min(a, b) (((a) < (b)) ? (a) : (b))
  2. #define my_max(a, b) (((a) > (b)) ? (a) : (b))