1/* @title: Min and Max macros */
2#define MAX(a, b) ((a) > (b) ? (a) : (b))
3#define MIN(a, b) ((a) < (b) ? (a) : (b))
4