mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
18 lines
344 B
C
18 lines
344 B
C
#include <precomp.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int CDECL _strnicmp(const char *s1, const char *s2, size_t n)
|
|
{
|
|
|
|
if (n == 0)
|
|
return 0;
|
|
do {
|
|
if (toupper(*s1) != toupper(*s2++))
|
|
return toupper(*(unsigned const char *)s1) - toupper(*(unsigned const char *)--s2);
|
|
if (*s1++ == 0)
|
|
break;
|
|
} while (--n != 0);
|
|
return 0;
|
|
}
|