diff options
author | epochqwert <epoch@hacking.allowed.org> | 2015-08-22 03:36:15 -0500 |
---|---|---|
committer | epochqwert <epoch@hacking.allowed.org> | 2015-08-22 03:36:15 -0500 |
commit | b7849c483393cf510cbe4bca137ce4520b636685 (patch) | |
tree | 28e6410126fac350d69c9f47a7588f7dfd639841 /url.h | |
download | uritools-b7849c483393cf510cbe4bca137ce4520b636685.tar.gz uritools-b7849c483393cf510cbe4bca137ce4520b636685.zip |
initial commit.
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 |