MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / stricmp

Function stricmp

deps/physx/physx/source/foundation/src/PsString.cpp:147–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

145}
146
147int32_t stricmp(const char* str, const char* str1)
148{
149#if PX_VC
150 return (::_stricmp(str, str1));
151#else
152 return (::strcasecmp(str, str1));
153#endif
154}
155
156int32_t strnicmp(const char* str, const char* str1, size_t n)
157{

Callers 15

execCmdMethod · 0.85
isCommandMethod · 0.85
typeOfMethod · 0.85
operator()Method · 0.85
getInputHashMethod · 0.85
getRepXSerializerMethod · 0.85
updateNodeMethod · 0.85
findChildByNameFunction · 0.85
strtoMethod · 0.85
fileToObjectMethod · 0.85
loadMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected