| 114 | } |
| 115 | |
| 116 | char *url_decode_parameter_value(const char **query) |
| 117 | { |
| 118 | struct strbuf out = STRBUF_INIT; |
| 119 | return url_decode_internal(query, -1, "&", &out, 1); |
| 120 | } |
| 121 | |
| 122 | void end_url_with_slash(struct strbuf *buf, const char *url) |
| 123 | { |
no test coverage detected