#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlNormalizeWindowsPath(
path: *const c_char,
) -> *mut xmlCharExpand description
Normalize a Windows path.
§UPSTREAM-PARITY
xmlChar *xmlNormalizeWindowsPath(const xmlChar *path);Upstream libxml2 (2.15.x, xmlIO.c) marks this function deprecated —
“This never really worked” — and simply returns a copy of path.
Returns NULL if path is NULL.
§Safety
path must be a valid NUL-terminated string or NULL.