pub fn isAbsolute(path: []const u8) bool
pub fn isAbsolute(path: []const u8) bool { if (native_os == .windows) { return isAbsoluteWindows(path); } else { return isAbsolutePosix(path); } }