pub unsafe fn split_qname4(
name: *const xmlChar,
prefix: *mut *mut xmlChar,
) -> *const xmlCharExpand description
Split a QName at the FIRST ‘:’ (upstream tree.c xmlSplitQName4):
prefix receives a duplicated prefix (or NULL) and the local name
(a pointer into the original string) is returned.
§SAFETY
namemust be a valid null-terminated string;prefixa valid out-pointer.