summaryrefslogtreecommitdiffstats
path: root/firmware/common/strcasecmp.c
blob: cdfbe2f81a27750601eaffbd906dff3702a35f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

#include <string.h>
#include <ctype.h>

#ifndef strcasecmp
int strcasecmp(const char *s1, const char *s2)
{
    while (*s1 != '\0' && tolower(*s1) == tolower(*s2)) {
        s1++;
        s2++;
    }

    return tolower(*(unsigned char *) s1) - tolower(*(unsigned char *) s2);
}
#endif

#ifndef strncasecmp
int strncasecmp(const char *s1, const char *s2, size_t n)
{
    int d = 0;
    
    for(; n != 0; n--)
    {
        int c1 = tolower(*s1++);
        int c2 = tolower(*s2++);
        if((d = c1 - c2) != 0 || c2 == '\0')
            break;
    }
    
    return d;
}
#endif