1 #ifndef _RANGE_H 2 #define _RANGE_H 3 4 #ifndef MIN 5 #define MIN(a, b) ((a) < (b) ? (a) : (b)) 6 #endif 7 8 #ifndef MAX 9 #define MAX(a, b) ((a) > (b) ? (a) : (b)) 10 #endif 11 12 #endif 13