| 11759 | } |
| 11760 | |
| 11761 | void trim_c0_whitespace(std::string_view& input) noexcept { |
| 11762 | while (!input.empty() && |
| 11763 | ada::unicode::is_c0_control_or_space(input.front())) { |
| 11764 | input.remove_prefix(1); |
| 11765 | } |
| 11766 | while (!input.empty() && ada::unicode::is_c0_control_or_space(input.back())) { |
| 11767 | input.remove_suffix(1); |
| 11768 | } |
| 11769 | } |
| 11770 | |
| 11771 | ada_really_inline void parse_prepared_path(std::string_view input, |
| 11772 | ada::scheme::type type, |
no test coverage detected