STREQ
STREQ,
#define STREQ(a, b) ((a)[0] == (b)[0] && strcmp(a, b) == 0)
#define STREQ(s1, s2) (strcmp((s1), (s2)) == 0)