shithub: scc

ref: d98e084e77dc2794355477421e8e6386236285bc
dir: /src/libc/string/strcoll.c/

View raw version
#include <string.h>

#undef strcoll

int
strcoll(const char *s1, const char *s2)
{
	while (*s1 && *s2 && *s1 == *s2)
		++s1, ++s2;
	return *(unsigned char *) s1 - *(unsigned char *) s2;
}