From 16d79f55774a2c65863d2d9ec322f9bdbc1297a2 Mon Sep 17 00:00:00 2001 From: bertrand Date: Thu, 15 Jul 1999 11:13:32 +0000 Subject: Do not use GStrings any more. Added assertion code. Cosmetic reformating 1999-07-15 bertrand * camel/url-util.c: * camel/url-util.h: Do not use GStrings any more. Added assertion code. Cosmetic reformating * AUTHORS: * ChangeLog: Changed my email address. svn path=/trunk/; revision=1025 --- camel/url-util.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'camel/url-util.h') diff --git a/camel/url-util.h b/camel/url-util.h index 74dab30b14..87b0a980a2 100644 --- a/camel/url-util.h +++ b/camel/url-util.h @@ -32,15 +32,17 @@ extern "C" { #endif /* __cplusplus */ typedef struct { - GString *protocol; - GString *user; - GString *passwd; - GString *host; - GString *port; - GString *path; + gchar *protocol; + gchar *user; + gchar *passwd; + gchar *host; + gchar *port; + gchar *path; + + gchar *url_string; } Gurl; -Gurl *g_url_new(GString* url_string); +Gurl *g_url_new (gchar *url_string); #ifdef __cplusplus } -- cgit v1.2.3