From 6fe78080d707fcb986c971c9c106d37d6248678f Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 13 Jul 2000 02:11:57 +0000 Subject: Chris forgot to add #include to the source files 2000-07-12 Jeffrey Stedfast Chris forgot to add #include to the source files * providers/imap/camel-imap-store.c (imap_connect): Fixed Peter's fix, we don't want to send a string to a %d. svn path=/trunk/; revision=4133 --- camel/string-utils.c | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'camel/string-utils.c') diff --git a/camel/string-utils.c b/camel/string-utils.c index 5291b12b45..cdeebe8322 100644 --- a/camel/string-utils.c +++ b/camel/string-utils.c @@ -174,25 +174,3 @@ string_prefix (const gchar *s, const gchar *suffix, gboolean *suffix_found) return result_string; } - -gchar * -strstrcase (const gchar *haystack, const gchar *needle) -{ - /* find the needle in the haystack neglecting case */ - gchar *ptr; - guint len; - - g_return_val_if_fail (haystack != NULL, NULL); - g_return_val_if_fail (needle != NULL, NULL); - - len = strlen (needle); - if (len > strlen (haystack)) - return NULL; - - for (ptr = (gchar *) haystack; *(ptr + len - 1) != '\0'; ptr++) - if (!g_strncasecmp (ptr, needle, len)) - return ptr; - - return NULL; -} - -- cgit