projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix tabs/spaces in memcpy.s
[oweals/musl.git]
/
src
/
string
/
strncmp.c
1
#include <string.h>
2
3
int strncmp(const char *_l, const char *_r, size_t n)
4
{
5
const unsigned char *l=(void *)_l, *r=(void *)_r;
6
if (!n--) return 0;
7
for (; *l && *r && n && *l == *r ; l++, r++, n--);
8
return *l - *r;
9
}