#ifndef _UTILS_H_ #define _UTILS_H_ #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define ARRAY_SIZE(a) (sizeof(a) / (sizeof((a)[0]))) #endif