ARRAY_LENGTH
#define ARRAY_LENGTH(a) (sizeof(a) / (sizeof((a)[0])))
#define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0])