stdutil.h

bool streq(const char* s1, const char* s2)
Compares s1 and s2.

bool strneq(const char* s1, const char* s2, int n)
Compares first n characters of s1 and s2.

bool strcaseeq(const char* s1, const char* s2)
Compares s1 and s2, ignoring case.

bool strncaseeq(const char* s1, const char* s2, int n)
Compares first n characters of s1 and s2, ignoring case.