| 52 | } |
| 53 | |
| 54 | static inline bool IsAbsolutePath(const TStringBuf path) noexcept { |
| 55 | return path && (IsPathSep(path[0]) || (path.size() > 1 && path[1] == ':' && IsAsciiAlpha(path[0]) && (path.size() == 2 || IsPathSep(path[2])))); |
| 56 | } |
| 57 | |
| 58 | void DoParseFirstPart(const TStringBuf part); |
| 59 | void DoParsePart(const TStringBuf part); |
nothing calls this directly
no test coverage detected