blob: 3e7743c4966ac75449d284449c46bb80f6276e9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* public domain rewrite of strncasecmp(3) */
#include "missing.h"
#include <ctype.h>
int
strncasecmp(p1, p2, len)
char *p1;
char *p2;
int len;
{
while (len != 0) {
if (toupper(*p1) != toupper(*p2)) {
return toupper(*p1) - toupper(*p2);
}
if (*p1 == '\0') {
return 0;
}
len--; p1++; p2++;
}
return 0;
}
|