url: add str wrapper for end_url_with_slash()
Helped-by: Johnathan Nieder <jrnieder@gmail.com> Signed-off-by: Tay Ray Chuan <rctay89@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
1966d9f37b
commit
3793a30901
7
url.c
7
url.c
@ -132,3 +132,10 @@ void end_url_with_slash(struct strbuf *buf, const char *url)
|
||||
if (buf->len && buf->buf[buf->len - 1] != '/')
|
||||
strbuf_addstr(buf, "/");
|
||||
}
|
||||
|
||||
void str_end_url_with_slash(const char *url, char **dest) {
|
||||
struct strbuf buf = STRBUF_INIT;
|
||||
end_url_with_slash(&buf, url);
|
||||
free(*dest);
|
||||
*dest = strbuf_detach(&buf, NULL);
|
||||
}
|
||||
|
1
url.h
1
url.h
@ -8,5 +8,6 @@ extern char *url_decode_parameter_name(const char **query);
|
||||
extern char *url_decode_parameter_value(const char **query);
|
||||
|
||||
extern void end_url_with_slash(struct strbuf *buf, const char *url);
|
||||
extern void str_end_url_with_slash(const char *url, char **dest);
|
||||
|
||||
#endif /* URL_H */
|
||||
|
Loading…
Reference in New Issue
Block a user