diff options
Diffstat (limited to 'url.h')
-rw-r--r-- | url.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +#ifndef URL_H +#define URL_H +struct url { + char *scheme; + char *username; + char *password; + char *domain; + char *port; + char *path; + char *query_string; + char *fragment_id; +}; + +void urlfromline(struct url *u,char *line); +#endif |