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

Method StreamTo

TinyXml/src/tinyxmlparser.cpp:182–194  ·  view source on GitHub ↗

static*/

Source from the content-addressed store, hash-verified

180}
181
182/*static*/ bool TiXmlBase::StreamTo( TIXML_ISTREAM * in, int character, TIXML_STRING * tag )
183{
184 while ( in->good() )
185 {
186 int c = in->peek();
187 if ( c == character )
188 return true;
189
190 in->get();
191 *tag += c;
192 }
193 return false;
194}
195#endif
196
197const TCHAR* TiXmlBase::ReadName( const TCHAR* p, TIXML_STRING * name )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected