repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cuserid: support invocation with a null pointer argument
[musl.git]
/
src
/
string
/
memcmp.c
blob
bdbce9f0f563cc957b971ef1f2b9dd88421f772a
1
#include <string.h>
2
3
int
memcmp
(
const void
*
vl
,
const void
*
vr
,
size_t
n
)
4
{
5
const unsigned char
*
l
=
vl
, *
r
=
vr
;
6
for
(;
n
&& *
l
== *
r
;
n
--,
l
++,
r
++);
7
return
n
? *
l
-*
r
:
0
;
8
}