memcmp.c\string\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/string/memcmp.c
blob: bdbce9f0f563cc957b971ef1f2b9dd88421f772a (plain) (blame)
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;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月05日 16:29:27 +0000

AltStyle によって変換されたページ (->オリジナル) /