STREQ
STREQ,
#define STREQ(a, b) ((a)[0] == (b)[0] && strcmp(a, b) == 0)
#define STREQ(l, r) (strcmp(l, r) == 0)