1#ifndef URL_H2#define URL_H34extern int is_url(const char *url);5extern int is_urlschemechar(int first_flag, int ch);6extern char *url_decode(const char *url);7extern char *url_decode_parameter_name(const char **query);8extern char *url_decode_parameter_value(const char **query);910extern void end_url_with_slash(struct strbuf *buf, const char *url);11extern void str_end_url_with_slash(const char *url, char **dest);1213#endif /* URL_H */