MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / IsNameChar

Method IsNameChar

sourcecommon/tinyxml2.h:538–543  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

536 }
537
538 inline static bool IsNameChar( unsigned char ch ) {
539 return IsNameStartChar( ch )
540 || isdigit( ch )
541 || ch == '.'
542 || ch == '-';
543 }
544
545 inline static bool StringEqual( const char* p, const char* q, int nChar=INT_MAX ) {
546 int n = 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected