mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-19 07:21:20 +03:00
import KernelEx-4.0-RC1
This commit is contained in:
24
kexcrt/strnicmp.c
Normal file
24
kexcrt/strnicmp.c
Normal file
@ -0,0 +1,24 @@
|
||||
/*
|
||||
* strnicmp.c
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
|
||||
int strnicmp(const char *s1, const char *s2, size_t n)
|
||||
{
|
||||
const unsigned char *c1 = (const unsigned char *)s1;
|
||||
const unsigned char *c2 = (const unsigned char *)s2;
|
||||
unsigned char ch;
|
||||
int d = 0;
|
||||
|
||||
while (n--) {
|
||||
/* toupper() expects an unsigned char (implicitly cast to int)
|
||||
as input, and returns an int, which is exactly what we want. */
|
||||
d = toupper(ch = *c1++) - toupper(*c2++);
|
||||
if (d || !ch)
|
||||
break;
|
||||
}
|
||||
|
||||
return d;
|
||||
}
|
Reference in New Issue
Block a user