1 #ifndef _PARSE_C 2 #define _PARSE_C 3 #include "conf.h" 4 5 uint32_t atoi2(const char *n); 6 int parse_url(const char *url, char *scheme, char *username, char *password, char *host, int *port, char *file); 7 void strtolower(char *str); 8 char *parse_url_subst(const char *src); 9 char *parse_url_subst_dist(void); 10 char *mime64(char *str); 11 uint32_t hash_fourbyte(unsigned char *str, const char term); 12 #endif |