char
*s1++
s1
bool streq(const char* s1, const char* s2) { while (*s1 != 0 && *s2 != 0) if (*s1++ != *s2++) return false; return (*s1 == *s2); }
bool strneq(const char* s1, const char* s2, int n);
true
n