MCPcopy Create free account
hub / github.com/bruderstein/nppPluginManager / StreamWhiteSpace

Method StreamWhiteSpace

TinyXml/src/tinyxmlparser.cpp:169–180  ·  view source on GitHub ↗

static*/

Source from the content-addressed store, hash-verified

167
168#ifdef TIXML_USE_STL
169/*static*/ bool TiXmlBase::StreamWhiteSpace( TIXML_ISTREAM * in, TIXML_STRING * tag )
170{
171 for( ;; )
172 {
173 if ( !in->good() ) return false;
174
175 int c = in->peek();
176 if ( !IsWhiteSpace( c ) )
177 return true;
178 *tag += in->get();
179 }
180}
181
182/*static*/ bool TiXmlBase::StreamTo( TIXML_ISTREAM * in, int character, TIXML_STRING * tag )
183{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected