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

Method IsWhiteSpace

sourcecommon/tinyxml2.h:528–530  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

526 return const_cast<char*>( SkipWhiteSpace( const_cast<const char*>(p) ) );
527 }
528 static bool IsWhiteSpace( char p ) {
529 return !IsUTF8Continuation(p) && isspace( static_cast<unsigned char>(p) );
530 }
531
532 inline static bool IsNameStartChar( unsigned char ch ) {
533 return ( ( ch < 128 ) ? isalpha( ch ) : 1 )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected