Revision b76bf72428e2efd978fee421606662e78ba0b2cf authored by Junio C Hamano on 11 February 2011, 22:26:10 UTC, committed by Junio C Hamano on 11 February 2011, 22:26:10 UTC
* jc/fsck-fixes:
  fsck: do not give up too early in fsck_dir()
  fsck: drop unused parameter from traverse_one_object()
2 parent s 3446a54 + ea6f0a2
Raw File
url.h
#ifndef URL_H
#define URL_H

extern int is_url(const char *url);
extern int is_urlschemechar(int first_flag, int ch);
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);
extern void str_end_url_with_slash(const char *url, char **dest);

#endif /* URL_H */
back to top