| 364 | } |
| 365 | |
| 366 | static inline bool IsSchemeChar(char c) noexcept { |
| 367 | return IsAsciiAlnum(c); //what about '+' ?.. |
| 368 | } |
| 369 | |
| 370 | static bool HasPrefix(const TStringBuf url) noexcept { |
| 371 | TStringBuf scheme, unused; |
nothing calls this directly
no test coverage detected