pub unsafe fn split_qname2(
name: *const xmlChar,
prefix: *mut *mut xmlChar,
) -> *mut xmlCharExpand description
Split a QName into prefix and local part (upstream tree.c
xmlSplitQName2): returns NULL when the name has no prefix (or starts
with ‘:’), otherwise allocates *prefix with the prefix and returns the
local part.
§Safety
namemust be a valid null-terminated string or NULL.prefixmust be a validxmlChar**.