Revision a5194d806c46a71d523054db28f0b22e23284a3c authored by Junio C Hamano on 25 July 2019, 20:59:23 UTC, committed by Junio C Hamano on 25 July 2019, 20:59:23 UTC
Window 7 update ;-)

* js/mingw-spawn-with-spaces-in-path:
  mingw: support spawning programs containing spaces in their names
2 parent s fe9dc6b + eb7c786
Raw File
url.h
#ifndef URL_H
#define URL_H

struct strbuf;

int is_url(const char *url);
int is_urlschemechar(int first_flag, int ch);
char *url_decode(const char *url);
char *url_decode_mem(const char *url, int len);
char *url_decode_parameter_name(const char **query);
char *url_decode_parameter_value(const char **query);

void end_url_with_slash(struct strbuf *buf, const char *url);
void str_end_url_with_slash(const char *url, char **dest);

#endif /* URL_H */
back to top