diff options
author | bertrand <Bertrand.Guiheneuf@inria.fr> | 1999-04-19 03:01:23 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-04-19 03:01:23 +0800 |
commit | b6df9d55cb6d3b348c831f4591398a0acc8247d9 (patch) | |
tree | 3b1f0dca459cfede1e137decfb65364e4f7b1c3d /camel/gstring-util.c | |
parent | 39eed88537557a8fab36894ee1bb4ab248f7261a (diff) | |
download | gsoc2013-evolution-b6df9d55cb6d3b348c831f4591398a0acc8247d9.tar gsoc2013-evolution-b6df9d55cb6d3b348c831f4591398a0acc8247d9.tar.gz gsoc2013-evolution-b6df9d55cb6d3b348c831f4591398a0acc8247d9.tar.bz2 gsoc2013-evolution-b6df9d55cb6d3b348c831f4591398a0acc8247d9.tar.lz gsoc2013-evolution-b6df9d55cb6d3b348c831f4591398a0acc8247d9.tar.xz gsoc2013-evolution-b6df9d55cb6d3b348c831f4591398a0acc8247d9.tar.zst gsoc2013-evolution-b6df9d55cb6d3b348c831f4591398a0acc8247d9.zip |
implemented (partially) have to write CamelStore before finishing it.
1999-04-18 bertrand <Bertrand.Guiheneuf@inria.fr>
* camel/camel-folder.c:
(camel_folder_create): implemented (partially)
have to write CamelStore before finishing it.
* camel/camel-folder.h (CamelFolder): added full_name field
(CamelFolderClass): added set/get_full_name methods
Some more work
svn path=/trunk/; revision=853
Diffstat (limited to 'camel/gstring-util.c')
-rw-r--r-- | camel/gstring-util.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/camel/gstring-util.c b/camel/gstring-util.c index 9a1357babd..3c9d24d167 100644 --- a/camel/gstring-util.c +++ b/camel/gstring-util.c @@ -157,3 +157,21 @@ g_string_right_dichotomy( GString *string, gchar sep, GString **prefix, GString return 'o'; } + + +/** + * g_string_append_g_string : append a GString to another GString + * + * @dest_string : string which will be appended + * @other_string : string to append + * + **/ +void +g_string_append_g_string(GString *dest_string, GString *other_string) +{ + g_assert(other_string); + g_assert(dest_string); + g_assert(other_string->str); + + g_string_append(dest_string, other_string->str); +} |