Function isAbsoluteZ [src]
Prototype
pub fn isAbsoluteZ(path_c: [*:0]const u8) bool
Parameters
path_c: [*:0]const u8
Source
pub fn isAbsoluteZ(path_c: [*:0]const u8) bool {
if (native_os == .windows) {
return isAbsoluteWindowsZ(path_c);
} else {
return isAbsolutePosixZ(path_c);
}
}