From b6df9d55cb6d3b348c831f4591398a0acc8247d9 Mon Sep 17 00:00:00 2001 From: bertrand Date: Sun, 18 Apr 1999 19:01:23 +0000 Subject: implemented (partially) have to write CamelStore before finishing it. 1999-04-18 bertrand * 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 --- camel/gstring-util.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'camel/gstring-util.c') 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); +} -- cgit v1.2.3