]> git.ipfire.org Git - thirdparty/git.git/blob - url.h
path.c: mark 'logs/HEAD' in 'common_list' as file
[thirdparty/git.git] / url.h
1 #ifndef URL_H
2 #define URL_H
3
4 struct strbuf;
5
6 int is_url(const char *url);
7 int is_urlschemechar(int first_flag, int ch);
8 char *url_decode(const char *url);
9 char *url_decode_mem(const char *url, int len);
10 char *url_decode_parameter_name(const char **query);
11 char *url_decode_parameter_value(const char **query);
12
13 void end_url_with_slash(struct strbuf *buf, const char *url);
14 void str_end_url_with_slash(const char *url, char **dest);
15
16 #endif /* URL_H */