2019-02-24 17:19:32 +03:00
|
|
|
#include <strings.h>
|
|
|
|
#include <assert.h>
|
2019-02-26 17:57:59 +03:00
|
|
|
#include <ctype.h>
|
2019-02-24 17:19:32 +03:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2019-02-26 17:57:59 +03:00
|
|
|
static char foldcase(char ch)
|
2019-02-24 17:19:32 +03:00
|
|
|
{
|
2019-02-26 17:57:59 +03:00
|
|
|
if (isalpha(ch))
|
|
|
|
return tolower(ch);
|
|
|
|
return ch;
|
2019-02-24 17:19:32 +03:00
|
|
|
}
|
|
|
|
|
2019-02-26 17:57:59 +03:00
|
|
|
int strcasecmp(const char* s1, const char* s2)
|
2019-02-24 17:19:32 +03:00
|
|
|
{
|
2019-02-26 17:57:59 +03:00
|
|
|
for (; foldcase(*s1) == foldcase(*s2); ++s1, ++s2) {
|
|
|
|
if (*s1 == 0)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return foldcase(*(const unsigned char*)s1) < foldcase(*(const unsigned char*)s2) ? -1 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int strncasecmp(const char* s1, const char* s2, size_t n)
|
|
|
|
{
|
|
|
|
if (!n)
|
|
|
|
return 0;
|
|
|
|
do {
|
|
|
|
if (foldcase(*s1) != foldcase(*s2++))
|
|
|
|
return foldcase(*(const unsigned char*)s1) - foldcase(*(const unsigned char*)--s2);
|
|
|
|
if (*s1++ == 0)
|
|
|
|
break;
|
|
|
|
} while (--n);
|
|
|
|
return 0;
|
2019-02-24 17:19:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|