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

Method IsNameStartChar

sourcecommon/tinyxml2.h:532–536  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

530 }
531
532 inline static bool IsNameStartChar( unsigned char ch ) {
533 return ( ( ch < 128 ) ? isalpha( ch ) : 1 )
534 || ch == ':'
535 || ch == '_';
536 }
537
538 inline static bool IsNameChar( unsigned char ch ) {
539 return IsNameStartChar( ch )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected