ref: ac6ae0f0c282b05d7e8351893bfc49c1e9b3f02c
dir: /lib/c/strcmp.c/
#include <string.h>
#undef strcmp
int
strcmp(const char *s1, const char *s2)
{
while (*s1 && *s2 && *s1 == *s2)
++s1, ++s2;
return *(unsigned char *)s1 - *(unsigned char *)s2;
}