diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-05-28 05:37:01 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-05-28 05:37:01 +0800 |
commit | 69912fc470a36f52887f18cf8c633f34aaa34fb5 (patch) | |
tree | 2d464ffaccbd71aad35d80871b76edc383f368db /camel/gstring-util.h | |
parent | a8a38c7a8076ca0f7976b01fe2cbd6e1e27a089b (diff) | |
download | gsoc2013-evolution-69912fc470a36f52887f18cf8c633f34aaa34fb5.tar gsoc2013-evolution-69912fc470a36f52887f18cf8c633f34aaa34fb5.tar.gz gsoc2013-evolution-69912fc470a36f52887f18cf8c633f34aaa34fb5.tar.bz2 gsoc2013-evolution-69912fc470a36f52887f18cf8c633f34aaa34fb5.tar.lz gsoc2013-evolution-69912fc470a36f52887f18cf8c633f34aaa34fb5.tar.xz gsoc2013-evolution-69912fc470a36f52887f18cf8c633f34aaa34fb5.tar.zst gsoc2013-evolution-69912fc470a36f52887f18cf8c633f34aaa34fb5.zip |
rewrite message obtained via parsing into a file. Actually, it works
* tests/test2.c (main): rewrite message obtained via
parsing into a file. Actually, it works pretty well :))
* camel/camel-mime-message.c (_set_recipient_list_from_string):
create recipient list form a comma separated string.
(_parse_header_pair): added recipient lists parsing.
* camel/camel-mime-part.c (_parse_header_pair):
new (protected) method. Parse a head pair and
decides what to do with it.
(_add_header): Call in _parse_header_pair
* camel/camel-mime-message.c (_parse_header_pair):
overload header parsing MimePart mthod.
* camel/gstring-util.c (g_string_split):
new func: split a gstring into a GList of
substring.
svn path=/trunk/; revision=950
Diffstat (limited to 'camel/gstring-util.h')
-rw-r--r-- | camel/gstring-util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/gstring-util.h b/camel/gstring-util.h index 8d88bf18af..a29d760cc5 100644 --- a/camel/gstring-util.h +++ b/camel/gstring-util.h @@ -52,6 +52,7 @@ gboolean g_string_equal_for_hash (gconstpointer v, gconstpointer v2); gboolean g_string_equal_for_glist (gconstpointer v, gconstpointer v2); guint g_string_hash (gconstpointer v); void g_string_list_free (GList *string_list); +GList *g_string_split (GString *string, char sep); #ifdef __cplusplus } |