Ruby 3.5.0dev (2025-04-04 revision 085cc6e43473f2a3c81311a07c1fc8efa46c118b)
pm_strncasecmp.c
2
6static inline int
7pm_tolower(int c)
8{
9 if ('A' <= c && c <= 'Z') {
10 return c | 0x20;
11 }
12 return c;
13}
14
24int
25pm_strncasecmp(const uint8_t *string1, const uint8_t *string2, size_t length) {
26 size_t offset = 0;
27 int difference = 0;
28
29 while (offset < length && string1[offset] != '\0') {
30 if (string2[offset] == '\0') return string1[offset];
31 if ((difference = pm_tolower(string1[offset]) - pm_tolower(string2[offset])) != 0) return difference;
32 offset++;
33 }
34
35 return difference;
36}
A custom strncasecmp implementation.