blob: 450fbd8d200e421f3f7c7760235af4dda79a521d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
int strncmp(char *s1, char *s2, int c)
{
int result = 0;
while (c) {
result = *s1 - *s2++;
if ((result != 0) || (*s1++ == 0)) {
break;
}
c--;
}
return result;
}
|