| 10827 | 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 10828 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15}; |
| 10829 | unsigned constexpr convert_hex_to_binary(const char c) noexcept { |
| 10830 | return hex_to_binary_table[c - '0']; |
| 10831 | } |
| 10832 | |
| 10833 | std::string percent_decode(const std::string_view input, size_t first_percent) { |
| 10834 | // next line is for safety only, we expect users to avoid calling |
no outgoing calls
no test coverage detected