diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-07-15 19:13:32 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-07-15 19:13:32 +0800 |
commit | 16d79f55774a2c65863d2d9ec322f9bdbc1297a2 (patch) | |
tree | 3491377d19c416168c810e85bc964047efb0b746 /camel/url-util.h | |
parent | fce26238c489db149f63164f13adf4bdb83d6062 (diff) | |
download | gsoc2013-evolution-16d79f55774a2c65863d2d9ec322f9bdbc1297a2.tar gsoc2013-evolution-16d79f55774a2c65863d2d9ec322f9bdbc1297a2.tar.gz gsoc2013-evolution-16d79f55774a2c65863d2d9ec322f9bdbc1297a2.tar.bz2 gsoc2013-evolution-16d79f55774a2c65863d2d9ec322f9bdbc1297a2.tar.lz gsoc2013-evolution-16d79f55774a2c65863d2d9ec322f9bdbc1297a2.tar.xz gsoc2013-evolution-16d79f55774a2c65863d2d9ec322f9bdbc1297a2.tar.zst gsoc2013-evolution-16d79f55774a2c65863d2d9ec322f9bdbc1297a2.zip |
Do not use GStrings any more. Added assertion code. Cosmetic reformating
1999-07-15 bertrand <Bertrand.Guiheneuf@aful.org>
* 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
Diffstat (limited to 'camel/url-util.h')
-rw-r--r-- | camel/url-util.h | 16 |
1 files changed, 9 insertions, 7 deletions
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 } |