diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-05-28 00:42:32 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-05-28 00:42:32 +0800 |
commit | a8a38c7a8076ca0f7976b01fe2cbd6e1e27a089b (patch) | |
tree | 890b75f9188b6024eded1d639b21b913593a0edc /camel/gstring-util.h | |
parent | 72c4a8deda6f0b0d740c8ba449bced1ac25de4d9 (diff) | |
download | gsoc2013-evolution-a8a38c7a8076ca0f7976b01fe2cbd6e1e27a089b.tar gsoc2013-evolution-a8a38c7a8076ca0f7976b01fe2cbd6e1e27a089b.tar.gz gsoc2013-evolution-a8a38c7a8076ca0f7976b01fe2cbd6e1e27a089b.tar.bz2 gsoc2013-evolution-a8a38c7a8076ca0f7976b01fe2cbd6e1e27a089b.tar.lz gsoc2013-evolution-a8a38c7a8076ca0f7976b01fe2cbd6e1e27a089b.tar.xz gsoc2013-evolution-a8a38c7a8076ca0f7976b01fe2cbd6e1e27a089b.tar.zst gsoc2013-evolution-a8a38c7a8076ca0f7976b01fe2cbd6e1e27a089b.zip |
sync
svn path=/trunk/; revision=949
Diffstat (limited to 'camel/gstring-util.h')
-rw-r--r-- | camel/gstring-util.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/camel/gstring-util.h b/camel/gstring-util.h index f8b7ee3fd1..8d88bf18af 100644 --- a/camel/gstring-util.h +++ b/camel/gstring-util.h @@ -36,15 +36,16 @@ extern "C" { typedef enum { NONE = 0, - STRIP_TRAILING = 1, - STRIP_LEADING = 2 + RIGHT_DIR = 1, + STRIP_TRAILING = 2, + STRIP_LEADING = 4, } DichotomyOption; gboolean g_string_equals(GString *string1, GString *string2); GString *g_string_clone(GString *string); -gchar g_string_right_dichotomy( GString *string, gchar sep, GString **prefix, GString **suffix, DichotomyOption options); +gchar g_string_dichotomy( GString *string, gchar sep, GString **prefix, GString **suffix, DichotomyOption options); void g_string_append_g_string(GString *dest_string, GString *other_string); gboolean g_string_equal_for_hash (gconstpointer v, gconstpointer v2); |