MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / strcasecmp

Method strcasecmp

Engine/lib/collada/src/dae/daeUtils.cpp:114–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112}
113
114int cdom::strcasecmp(const char* str1, const char* str2) {
115#ifdef _MSC_VER
116 return _stricmp(str1, str2);
117#else
118 return ::strcasecmp(str1, str2);
119#endif
120}
121
122string cdom::tolower(const string& s) {
123 string result;

Callers

nothing calls this directly

Calls 1

strcasecmpFunction · 0.85

Tested by

no test coverage detected