#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlTextReaderGetAttributeNs(
reader: *mut XmlTextReader,
localName: *const xmlChar,
namespaceURI: *const xmlChar,
) -> *mut xmlCharExpand 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.