| 64 | static const int MAX_DECIMALS = 32; |
| 65 | |
| 66 | static _FORCE_INLINE_ char32_t lower_case(char32_t c) { |
| 67 | return (is_ascii_upper_case(c) ? (c + ('a' - 'A')) : c); |
| 68 | } |
| 69 | |
| 70 | Error String::parse_url(String &r_scheme, String &r_host, int &r_port, String &r_path, String &r_fragment) const { |
| 71 | String base = *this; |
no test coverage detected