shithub: scc

ref: 42da25d1f1b2108c6fb982129e8a749a5f5d2000
dir: /src/libc/string/memcmp.c/

View raw version
#include <string.h>
#undef memcmp

int
memcmp(const void *s1, const void *s2, size_t n)
{
	const char *s = s1;
	const char *t = s2;

	for ( ; n > 0 && *s == *t; --n)
		++s, ++t;

	return (n > 0) ? *(unsigned char *) s - *(unsigned char *) t : 0;
}