Skip to main content

xmlTextReaderGetAttributeNs

Function xmlTextReaderGetAttributeNs 

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

Get an attribute value by local name and namespace URI.

Returns a newly allocated string, or NULL.

§UPSTREAM-PARITY

xmlChar *xmlTextReaderGetAttributeNs(xmlTextReaderPtr reader,
                                     const xmlChar *localName,
                                     const xmlChar *namespaceURI);

§Safety

reader, localName, and namespaceURI must be valid pointers or NULL.