Code

Merge branch 'mg/rev-list-one-side-only'
[git.git] / url.c
diff --git a/url.c b/url.c
index 7cebc6471b1aea9b001cb44e57a5d0c9a4d8757a..3e06fd34c46a00b41f4843ea87a151314ce0789c 100644 (file)
--- a/url.c
+++ b/url.c
@@ -1,4 +1,5 @@
 #include "cache.h"
+#include "url.h"
 
 int is_urlschemechar(int first_flag, int ch)
 {
@@ -132,3 +133,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);
+}