STRCMP
#define STRCMP(s1, s2) (strcmp((const char *)s1, (const char *)s2) == 0)
#define STRCMP(A, B) (cf(A, B) != 0)
#define STRCMP(A, B) (COMPARE((A), (B)) > 0)
#define STRCMP(A, B) (COMPARE((A), (B)) < 0)
#define STRCMP(A, B) (COMPARE((A), (B)) != 0)
#define STRCMP(a, b) strcmp((a), (b))