1#include "prism/internal/strncasecmp.h"
10 if (
'A' <= c && c <=
'Z') {
26pm_strncasecmp(
const uint8_t *string1,
const uint8_t *string2,
size_t length) {
30 while (offset < length && string1[offset] !=
'\0') {
31 if (string2[offset] ==
'\0')
return string1[offset];
32 if ((difference = pm_tolower(string1[offset]) - pm_tolower(string2[offset])) != 0)
return difference;
#define PRISM_INLINE
Old Visual Studio versions do not support the inline keyword, so we need to define it to be __inline.