MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlNewStringInputStream

Function xmlNewStringInputStream

ThirdParty/libxml2/vtklibxml2/parserInternals.c:1897–1900  ·  view source on GitHub ↗

* xmlNewStringInputStream: * @ctxt: an XML parser context * @buffer: an memory buffer * * Create a new input stream based on a memory buffer. * * Returns the new input stream */

Source from the content-addressed store, hash-verified

1895 * Returns the new input stream
1896 */
1897xmlParserInputPtr
1898xmlNewStringInputStream(xmlParserCtxtPtr ctxt, const xmlChar *buffer) {
1899 return(xmlNewInputString(ctxt, NULL, (const char *) buffer, NULL, 0));
1900}
1901
1902
1903/****************************************************************

Callers 2

testExternalEntityLoaderFunction · 0.85

Calls 1

xmlNewInputStringFunction · 0.85

Tested by

no test coverage detected