Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/url.h
diff options
context:
space:
mode:
authorTay Ray Chuan <rctay89@gmail.com>2010-11-25 11:21:04 +0300
committerJunio C Hamano <gitster@pobox.com>2010-11-27 01:50:45 +0300
commit1966d9f37b94fa506bfa43961fb111084aaa2c45 (patch)
tree9354dd356a68cda21fa6491160120a57a9782060 /url.h
parent6cfc028641246939ee52a6720d4d3c4b63ccb515 (diff)
shift end_url_with_slash() from http.[ch] to url.[ch]
This allows non-http/curl users to access it too (eg. http-backend.c). Update include headers in end_url_with_slash() users too. Signed-off-by: Tay Ray Chuan <rctay89@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'url.h')
-rw-r--r--url.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/url.h b/url.h
index 15817f8f93..8cb74d4a0a 100644
--- a/url.h
+++ b/url.h
@@ -7,4 +7,6 @@ extern char *url_decode(const char *url);
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);
+
#endif /* URL_H */