* xmlParserInputBufferRead: * @in: a buffered parser input * @len: indicative value of the amount of chars to read * * Refresh the content of the input buffer, the old data are considered * consumed * This routine handle the I18N transcoding to internal UTF-8 * * Returns the number of chars read and stored in the buffer, or -1 * in case of error. */
| 2418 | * in case of error. |
| 2419 | */ |
| 2420 | int |
| 2421 | xmlParserInputBufferRead(xmlParserInputBufferPtr in, int len) { |
| 2422 | return(xmlParserInputBufferGrow(in, len)); |
| 2423 | } |
| 2424 | |
| 2425 | #ifdef LIBXML_OUTPUT_ENABLED |
| 2426 | /** |
no test coverage detected