diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-09-02 19:19:40 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-09-02 19:19:40 +0800 |
commit | 5c7fc6df1165a26c7dfca91f9664c4e860856824 (patch) | |
tree | f0edec368083102280630c6d7f2ac3f88c98add3 /camel/gmime-utils.c | |
parent | acfd8adff8c507d6ee738993866aefa12361b172 (diff) | |
download | gsoc2013-evolution-5c7fc6df1165a26c7dfca91f9664c4e860856824.tar gsoc2013-evolution-5c7fc6df1165a26c7dfca91f9664c4e860856824.tar.gz gsoc2013-evolution-5c7fc6df1165a26c7dfca91f9664c4e860856824.tar.bz2 gsoc2013-evolution-5c7fc6df1165a26c7dfca91f9664c4e860856824.tar.lz gsoc2013-evolution-5c7fc6df1165a26c7dfca91f9664c4e860856824.tar.xz gsoc2013-evolution-5c7fc6df1165a26c7dfca91f9664c4e860856824.tar.zst gsoc2013-evolution-5c7fc6df1165a26c7dfca91f9664c4e860856824.zip |
changed decl to fit CRLFunc. (_write_recipients_to_stream): calls
1999-09-02 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/camel-mime-message.c (_write_one_recipient_to_stream):
changed decl to fit CRLFunc.
(_write_recipients_to_stream):
calls camel_recipient_foreach_recipient_type now.
* camel/camel-recipient.c (camel_recipient_foreach_recipient_type):
new convinience function. Iterate over all recipient types.
* camel/gmime-utils.c (gmime_write_header_table_to_stream):
s/write_header_table_to_stream/gmime_write_header_table_to_stream/
(gmime_write_header_with_glist_to_stream):
s/write_header_with_glist_to_stream/gmime_write_header_with_glist_to_stream/
svn path=/trunk/; revision=1167
Diffstat (limited to 'camel/gmime-utils.c')
-rw-r--r-- | camel/gmime-utils.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/camel/gmime-utils.c b/camel/gmime-utils.c index ace58f93b6..6551cd330d 100644 --- a/camel/gmime-utils.c +++ b/camel/gmime-utils.c @@ -62,7 +62,7 @@ _write_one_header_to_stream (gpointer key, gpointer value, gpointer user_data) } void -write_header_table_to_stream (CamelStream *stream, GHashTable *header_table) +gmime_write_header_table_to_stream (CamelStream *stream, GHashTable *header_table) { CAMEL_LOG_FULL_DEBUG ( "write_header_table_to_stream:: Entering\n"); g_hash_table_foreach (header_table, @@ -73,7 +73,10 @@ write_header_table_to_stream (CamelStream *stream, GHashTable *header_table) void -write_header_with_glist_to_stream (CamelStream *stream, const gchar *header_name, GList *header_values, const gchar *separator) +gmime_write_header_with_glist_to_stream (CamelStream *stream, + const gchar *header_name, + GList *header_values, + const gchar *separator) { gchar *current; |