pub fn parsePathPosix(path: []const u8) PosixPath
pub fn parsePathPosix(path: []const u8) PosixPath { const abs = isAbsolutePosix(path); return .{ .kind = if (abs) .absolute else .relative, .root = if (abs) path[0..1] else path[0..0], }; }