repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* dwarf2out.c (DEBUG_LTO_DWO_INFO_SECTION): Reorder defines.
[official-gcc.git]
/
libgcc
/
memcmp.c
blob
2348afe1d27f7101adaa1970ee7f040e2343f35c
1
/* Public domain. */
2
#include <stddef.h>
3
4
int
5
memcmp
(
const void
*
str1
,
const void
*
str2
,
size_t
count
)
6
{
7
const unsigned char
*
s1
=
str1
;
8
const unsigned char
*
s2
=
str2
;
9
10
while
(
count
-- >
0
)
11
{
12
if
(*
s1
++ != *
s2
++)
13
return
s1
[-
1
] <
s2
[-
1
] ? -
1
:
1
;
14
}
15
return
0
;
16
}