Function xmlTextReaderNext
Source #[unsafe(no_mangle)]
pub unsafe extern "C" fn xmlTextReaderNext(
reader: *mut XmlTextReader,
) -> c_int
Expand description
Skip to the next sibling of the current node.
Returns 1 on success, 0 if no more siblings, -1 on error.
§UPSTREAM-PARITY
int xmlTextReaderNext(xmlTextReaderPtr reader);
§Safety
reader must be a valid pointer or NULL.