Convenience wrappers.
| 130 | |
| 131 | // Convenience wrappers. |
| 132 | inline std::string s_url_encode(const std::string& source) { |
| 133 | return s_transform(source, url_encode); |
| 134 | } |
| 135 | inline std::string s_url_decode(const std::string& source) { |
| 136 | return s_transform(source, url_decode); |
| 137 | } |
nothing calls this directly
no test coverage detected