summaryrefslogtreecommitdiffstats
path: root/firmware/common/strcasecmp.c
blob: 24a9def9044b822334281578845de72bd2c2c2d4 (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
33
34

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

#ifndef strcasecmp
int strcasecmp(const char *s1, const char *s2)
{
    int d, c1, c2;
    do
    {
        c1 = tolower(*s1++);
        c2 = tolower(*s2++);
    }
    while ((d = c1 - c2) == 0 && c1 && c2);
    return d;
}
#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