MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / iequals

Method iequals

common/SmallString.cpp:474–480  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

472}
473
474bool SmallStringBase::iequals(const char* otherText) const
475{
476 if (m_length == 0)
477 return (std::strlen(otherText) == 0);
478 else
479 return (CASE_COMPARE(m_buffer, otherText) == 0);
480}
481
482bool SmallStringBase::iequals(const SmallStringBase& str) const
483{

Callers

nothing calls this directly

Calls 2

lengthMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected