fn isPathChar(c: u8) bool
fn isPathChar(c: u8) bool { return isUserChar(c) or c == '/' or c == ':' or c == '@'; }