* xmlBufResetInput: * @buf: an xmlBufPtr * @input: an xmlParserInputPtr * * Update the input to use the current set of pointers from the buffer. * * Returns -1 in case of error, 0 otherwise */
| 927 | * Returns -1 in case of error, 0 otherwise |
| 928 | */ |
| 929 | int |
| 930 | xmlBufResetInput(xmlBufPtr buf, xmlParserInputPtr input) { |
| 931 | return(xmlBufUpdateInput(buf, input, 0)); |
| 932 | } |
| 933 | |
| 934 | /** |
| 935 | * xmlBufUpdateInput: |
no test coverage detected