| 17230 | } |
| 17231 | |
| 17232 | bool ada_set_username(ada_url result, const char* input, |
| 17233 | size_t length) noexcept { |
| 17234 | ada::result<ada::url_aggregator>& r = get_instance(result); |
| 17235 | if (!r) { |
| 17236 | return false; |
| 17237 | } |
| 17238 | return r->set_username(std::string_view(input, length)); |
| 17239 | } |
| 17240 | |
| 17241 | bool ada_set_password(ada_url result, const char* input, |
| 17242 | size_t length) noexcept { |
nothing calls this directly
no test coverage detected