From b0bbe73658c3083bfcdcca93831a88972b620f2c Mon Sep 17 00:00:00 2001 From: Sushma Rai Date: Tue, 4 Oct 2005 13:06:08 +0000 Subject: dded case insensitive compare support etable, and using it for Organization filed. Fixes #207110. Patch submitted by "Devashish Sharma " svn path=/trunk/; revision=30489 --- e-util/ChangeLog | 5 +++++ e-util/e-util.c | 13 +++++++++++++ e-util/e-util.h | 2 ++ 3 files changed, 20 insertions(+) (limited to 'e-util') diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 3aa33477a0..f8c63cea64 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2005-10-04 Devashish Sharma + + * e-util.c (g_str_case_compare): added a function for case insensitive + and locale sensitive UTF8 string compare. See #207110. + 2005-09-28 Tor Lillqvist * e-html-utils.c (e_text_to_html_full): Use g_ascii_strncasecmp() diff --git a/e-util/e-util.c b/e-util/e-util.c index 7a9f81d81b..bf4fe6292b 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -57,6 +57,19 @@ g_str_compare (const void *x, const void *y) return strcmp (x, y); } +int +g_str_case_compare (const void *x, const void *y) +{ + if (x == NULL || y == NULL) { + if (x == y) + return 0; + else + return x ? -1 : 1; + } + + return g_utf8_collate (g_utf8_casefold (x, -1), g_utf8_casefold (y, -1)); +} + int g_collate_compare (const void *x, const void *y) { diff --git a/e-util/e-util.h b/e-util/e-util.h index 6fe75746c2..d665a67052 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -139,6 +139,8 @@ typedef enum { } EFocus; int g_str_compare (const void *x, const void *y); +int g_str_case_compare (const void *x, + const void *y); int g_collate_compare (const void *x, const void *y); int g_int_compare (const void *x, -- cgit v1.2.3