Function xmlTextReaderValue
Source #[unsafe(no_mangle)]
pub unsafe extern "C" fn xmlTextReaderValue(
reader: *mut XmlTextReader,
) -> *mut xmlChar
Expand description
Get the value of the current node.
Returns a newly allocated string (caller must free with xmlFree),
or NULL if there is no value.
§UPSTREAM-PARITY
xmlChar *xmlTextReaderValue(xmlTextReaderPtr reader);
§Safety
reader must be a valid pointer or NULL.