MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / strnicmp

Function strnicmp

lib/mdflib/mdflib/src/platform.cpp:23–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
22
23int strnicmp(const char *__s1, const char *__s2, size_t __n) {
24#if (_MSC_VER)
25 return _strnicmp(__s1, __s2, __n);
26#else
27 return strncasecmp(__s1, __s2, __n);
28#endif
29}
30
31void strerror(int __errnum, char *__buf, size_t __buflen) {
32#if (_WIN32)

Callers 5

AttributeMethod · 0.85
ValueMethod · 0.85
IsTxtBlockMethod · 0.85
IsMdfFileFunction · 0.85
VerifyMdfFileMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected