// See LICENSE for license details. #include int strncmp(const char *s1, const char *s2, size_t n) { while (n-- > 0 && *s1 && *s2 && *s1 == *s2) { s1++; s2++; } return *s1 - *s2; }