pub unsafe fn set_ns_prop(
node: *mut _xmlNode,
_ns: *mut _xmlNs,
name: *const xmlChar,
value: *const xmlChar,
) -> *mut _xmlAttrExpand description
Set a namespaced attribute.
§UPSTREAM-PARITY
xmlAttrPtr xmlSetNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name, const xmlChar *value);§SAFETY
nodemust be a valid pointer to an _xmlNode, or NULL.nsmay be NULL.namemust be a valid null-terminated string.valuemust be a valid null-terminated string or NULL.