]> git.ipfire.org Git - thirdparty/git.git/blobdiff - url.c
url: add str wrapper for end_url_with_slash()
[thirdparty/git.git] / url.c
diff --git a/url.c b/url.c
index 7cebc6471b1aea9b001cb44e57a5d0c9a4d8757a..6a5495960f03ded65f0f5f8b8bd5c7cd98c0b05e 100644 (file)
--- a/url.c
+++ b/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);
+}