#ifndef _H_UTIL
#define _H_UTIL

typedef enum{false=0,true} bool;

#define MAX(a,b) ((a)<(b)?(b):(a))
#define MIN(a,b) ((a)>(b)?(b):(a))

#endif
