Sign in
googlers
/
maze
/
klibc
/
klibc-0.14
/
.
/
strcmp.c
blob: d4c17d2207c6d7faf8464079160be9f36ba29f9a [
file
] [
log
] [
blame
]
/*
* strcmp.c
*/
#include
<string.h>
int
strcmp
(
const
char
*
s1
,
const
char
*
s2
)
{
const
unsigned
char
*
c1
=
s1
,
*
c2
=
s2
;
unsigned
char
ch
;
int
d
=
0
;
while
(
1
)
{
d
=
(
int
)*
c2
++
-
(
int
)(
ch
=
*
c1
++);
if
(
d
||
!
ch
)
break
;
}
return
d
;
}