MCPcopy Create free account
hub / github.com/crownengine/crown / strCmpI

Function strCmpI

3rdparty/bx/src/string.cpp:208–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206 }
207
208 int32_t strCmpI(const StringView& _lhs, const StringView& _rhs, int32_t _max)
209 {
210 return strCmp<toLower>(
211 _lhs.getPtr()
212 , min(_lhs.getLength(), _max)
213 , _rhs.getPtr()
214 , min(_rhs.getLength(), _max)
215 );
216 }
217
218 inline int32_t strCmpV(const char* _lhs, int32_t _lhsMax, const char* _rhs, int32_t _rhsMax)
219 {

Callers 7

mainFunction · 0.85
getFormatFunction · 0.85
compileShaderFunction · 0.85
findModuleFunction · 0.85
strcasecmpFunction · 0.85
hasArgMethod · 0.85
findMethod · 0.85

Calls 1

minFunction · 0.50

Tested by

no test coverage detected