aboutsummaryrefslogtreecommitdiffstats
path: root/camel/url-util.h
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@inria.fr>1999-04-24 19:11:07 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-04-24 19:11:07 +0800
commit0a2e9eef732efa8b48e5188b361f523dfe8bb0cc (patch)
tree5e07f58fd11b5319498b2e91c2f701ffaf6822bb /camel/url-util.h
parent399f0e77bcca33cefb9cb6ef623719749d9f8390 (diff)
downloadgsoc2013-evolution-0a2e9eef732efa8b48e5188b361f523dfe8bb0cc.tar
gsoc2013-evolution-0a2e9eef732efa8b48e5188b361f523dfe8bb0cc.tar.gz
gsoc2013-evolution-0a2e9eef732efa8b48e5188b361f523dfe8bb0cc.tar.bz2
gsoc2013-evolution-0a2e9eef732efa8b48e5188b361f523dfe8bb0cc.tar.lz
gsoc2013-evolution-0a2e9eef732efa8b48e5188b361f523dfe8bb0cc.tar.xz
gsoc2013-evolution-0a2e9eef732efa8b48e5188b361f523dfe8bb0cc.tar.zst
gsoc2013-evolution-0a2e9eef732efa8b48e5188b361f523dfe8bb0cc.zip
URL rewritten completely. Error handling not implemented in public
1999-04-24 bertrand <Bertrand.Guiheneuf@inria.fr> * 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
Diffstat (limited to 'camel/url-util.h')
-rw-r--r--camel/url-util.h10
1 files changed, 10 insertions, 0 deletions
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
}