* 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 */
| 1895 | * Returns the new input stream |
| 1896 | */ |
| 1897 | xmlParserInputPtr |
| 1898 | xmlNewStringInputStream(xmlParserCtxtPtr ctxt, const xmlChar *buffer) { |
| 1899 | return(xmlNewInputString(ctxt, NULL, (const char *) buffer, NULL, 0)); |
| 1900 | } |
| 1901 | |
| 1902 | |
| 1903 | /**************************************************************** |
no test coverage detected