MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / IsPrefixHex

Function IsPrefixHex

externals/tinyxml2/tinyxml2.h:590–593  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

588 }
589
590 inline static bool IsPrefixHex( const char* p) {
591 p = SkipWhiteSpace(p, 0);
592 return p && *p == '0' && ( *(p + 1) == 'x' || *(p + 1) == 'X');
593 }
594
595 inline static bool StringEqual( const char* p, const char* q, int nChar=INT_MAX ) {
596 if ( p == q ) {

Callers 4

ToIntMethod · 0.85
ToUnsignedMethod · 0.85
ToInt64Method · 0.85
ToUnsigned64Method · 0.85

Calls 1

SkipWhiteSpaceFunction · 0.85

Tested by

no test coverage detected