#[no_mangle]
pub unsafe extern "C" fn xila_file_system_resolve_path(
path: *const i8,
resolved_path: *mut u8,
resolved_path_size: usize,
) -> XilaFileSystemResult
Expand description
This function is used to convert a path to a resolved path (i.e. a path without symbolic links or relative paths).
ยงSafety
This function is unsafe because it dereferences raw pointers.