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

Function stricmp

lib/mdflib/mdflib/src/platform.cpp:15–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13namespace Platform {
14
15int stricmp(const char *__s1, const char *__s2) {
16#if (_MSC_VER)
17 return _stricmp(__s1, __s2);
18#else
19 return strcasecmp(__s1, __s2);
20#endif
21}
22
23int strnicmp(const char *__s1, const char *__s2, size_t __n) {
24#if (_MSC_VER)

Callers 8

AttributeMethod · 0.85
ValueMethod · 0.85
DataTypeMethod · 0.85
WriteFileMethod · 0.85
CreateXmlFileFunction · 0.85
IsTagNameMethod · 0.85
IsAttributeMethod · 0.85
CreateChannelObserverFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected