From 414157e5440f32a8469c692822fb818c9fa92dfe Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 6 Mar 2003 21:42:11 +0000 Subject: s/g_strncasecmp/strncasecmp/g 2003-03-06 Jeffrey Stedfast * providers/imap/camel-imap-utils.c (imap_next_word): s/g_strncasecmp/strncasecmp/g * camel-iconv.c: Updated to be an exact copy of e-iconv (except names changed). We don't use this yet, but we may in the future. * camel-url.c (camel_url_new_with_base): Here too. * camel-sasl-kerberos4.c (krb4_challenge): Use camel_strdown() here instead of g_strdown() since the latter has been deprecated. * providers/imap/camel-imap-utils.c (imap_parse_body): Use camel_strdown() since g_ascii_strdown() does not do what we thought. * providers/imap/camel-imap-store.c: s/strstrcase/camel_strstrcase/g * providers/imap/camel-imap-folder.c (do_append): s/strstrcase/camel_strstrcase/ (handle_copyuid): Same. * string-utils.c (camel_strdown): New function because the g_ascii_strdown interface sucks. (camel_strstrcase): Renamed from strstrcase. svn path=/trunk/; revision=20213 --- camel/camel-iconv.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'camel/camel-iconv.h') diff --git a/camel/camel-iconv.h b/camel/camel-iconv.h index 9fccc55752..09f0a5cc8c 100644 --- a/camel/camel-iconv.h +++ b/camel/camel-iconv.h @@ -32,15 +32,15 @@ extern "C" { #include #include -void camel_iconv_init (void); -void camel_iconv_shutdown (void); +const char *camel_iconv_locale_charset (void); +const char *camel_iconv_locale_language (void); const char *camel_iconv_charset_name (const char *charset); -iconv_t camel_iconv_open (const char *to, const char *from); +const char *camel_iconv_charset_language (const char *charset); +iconv_t camel_iconv_open (const char *to, const char *from); size_t camel_iconv (iconv_t cd, const char **inbuf, size_t *inleft, char **outbuf, size_t *outleft); - int camel_iconv_close (iconv_t cd); #ifdef __cplusplus -- cgit v1.2.3