summaryrefslogtreecommitdiff
path: root/url.h
diff options
context:
space:
mode:
Diffstat (limited to 'url.h')
-rw-r--r--url.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/url.h b/url.h
index 5e9bea8..625f0b1 100644
--- a/url.h
+++ b/url.h
@@ -1,5 +1,6 @@
#ifndef URL_H
#define URL_H
+
struct url {
char *scheme;
char *username;
@@ -11,5 +12,6 @@ struct url {
char *fragment_id;
};
-void urlfromline(struct url *u,char *line);
+void urlfromline(struct url *,char *);
+void magic_and_defaults(struct url *);
#endif