MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / StringEqual

Function StringEqual

Dependencies/tinyxml2/include/tinyxml2.h:596–604  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 9

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

Calls

no outgoing calls

Tested by

no test coverage detected