mailing list of musl libc
 help / color / mirror / code / Atom feed
bdbce9f0f563cc957b971ef1f2b9dd88421f772a blob 175 bytes (raw)

1
2
3
4
5
6
7
8
 
#include <string.h>

int memcmp(const void *vl, const void *vr, size_t n)
{
	const unsigned char *l=vl, *r=vr;
	for (; n && *l == *r; n--, l++, r++);
	return n ? *l-*r : 0;
}
debug log:

solving bdbce9f ...
found bdbce9f in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).