Skip to main content

xmlTextReaderName

Function xmlTextReaderName 

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

Get the name of the current node.

Returns a newly allocated string (caller must free with xmlFree), or NULL if there is no name.

§UPSTREAM-PARITY

xmlChar *xmlTextReaderName(xmlTextReaderPtr reader);

§Safety

reader must be a valid pointer or NULL.