#ifndef JEDUTIL_H #define JEDUTIL_H #define MIN(x,y) (((x)<(y)) ? (x) : (y) ) #define MAX(x,y) (((x)>(y)) ? (x) : (y) ) #endif