From 0a2e9eef732efa8b48e5188b361f523dfe8bb0cc Mon Sep 17 00:00:00 2001 From: bertrand Date: Sat, 24 Apr 1999 11:11:07 +0000 Subject: URL rewritten completely. Error handling not implemented in public 1999-04-24 bertrand * camel/url-util.c (new_g_url): URL rewritten completely. Error handling not implemented in public functions. But URL scan works pretty well :))) svn path=/trunk/; revision=874 --- camel/url-util.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'camel/url-util.h') diff --git a/camel/url-util.h b/camel/url-util.h index 2c9218ea78..fbacbe6da6 100644 --- a/camel/url-util.h +++ b/camel/url-util.h @@ -31,6 +31,16 @@ extern "C" { #pragma } #endif /* __cplusplus */ +typedef struct { + GString *protocol; + GString *user; + GString *passwd; + GString *host; + GString *port; + GString *path; +} Gurl; + +Gurl *new_g_url(GString* url_string); #ifdef __cplusplus } -- cgit