From 5e764dcac939cf6e3386234304bfa1bac862f8cf Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 12 Jul 2000 22:59:25 +0000 Subject: From addressbook/ChangeLog: 2000-07-12 Christopher James Lahey * backend/pas/pas-backend-file.c: Do case insensitive compares. * addressbook/gui/component/addressbook.c: Make quick search search both name and company name. From camel/ChangeLog: 2000-07-12 Christopher James Lahey * camel-folder-search.c, providers/imap/camel-imap-store.c: Changed from strstrcase to e_strstrcase. * string-utils.c, string-utils.h: Removed strstrcase (in favor of e_strstrcase in e-util/e-util.c.) From e-util/ChangeLog: 2000-07-12 Christopher James Lahey * e-util.c, e-util.h: Added e_strstrcase function. svn path=/trunk/; revision=4127 --- e-util/e-util.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'e-util/e-util.h') diff --git a/e-util/e-util.h b/e-util/e-util.h index ab5325806b..25fd839e19 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -46,6 +46,9 @@ gchar **e_strsplit (const gchar *string, const gchar *delimiter, gint max_tokens); +gchar *e_strstrcase (const gchar *haystack, + const gchar *needle); + void e_marshal_INT__INT_INT_POINTER (GtkObject * object, GtkSignalFunc func, gpointer func_data, GtkArg * args); -- cgit