Skip to main content

xmlTextReaderCurrentNode

Function xmlTextReaderCurrentNode 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn xmlTextReaderCurrentNode( reader: *mut XmlTextReader, ) -> *mut _xmlNode
Expand description

Return the current node of the reader.

§UPSTREAM-PARITY

xmlNodePtr xmlTextReaderCurrentNode(xmlTextReaderPtr reader);

Returns the current node or NULL. The node is owned by the document; the caller must not free it.

§Safety

reader must be a valid pointer or NULL.