shithub: scc

ref: 81678b9576d8f3922b1b8df5e1b523f04bc6c783
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 unsigned char *s = s1;
	const unsigned char *t = s2;

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

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