Skip to main content

xmlNormalizeWindowsPath

Function xmlNormalizeWindowsPath 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn xmlNormalizeWindowsPath( path: *const c_char, ) -> *mut xmlChar
Expand 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.