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

Function StringEqual

Engine/lib/tinyxml/tinyxml2.h:599–607  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

597 }
598
599 inline static bool StringEqual( const char* p, const char* q, int nChar=INT_MAX ) {
600 if ( p == q ) {
601 return true;
602 }
603 TIXMLASSERT( p );
604 TIXMLASSERT( q );
605 TIXMLASSERT( nChar >= 0 );
606 return strncmp( p, q, nChar ) == 0;
607 }
608
609 inline static bool IsUTF8Continuation( const char p ) {
610 return ( p & 0x80 ) != 0;

Callers 9

ToBoolMethod · 0.70
IdentifyMethod · 0.70
ParseDeepMethod · 0.70
ToElementWithNameMethod · 0.70
ShallowEqualMethod · 0.70
FindAttributeMethod · 0.70
AttributeMethod · 0.70
FindOrCreateAttributeMethod · 0.70
DeleteAttributeMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected