2003-02-25 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-message.c: Same as the ones below. * camel-mime-part.c: Reverted back to pre-camel-iconv * camel-filter-search.c: Same as below. * camel-folder-summary.c: Reverted back to pre-camel-iconv * camel.c (camel_init): Reverted to pre-camel-iconv * camel-charset-map.c (camel_charset_locale_name): Removed (part of the revert). (camel_charset_canonical_name): Same. * camel-mime-filter-charset.c: Revert back to using e_iconv from GAL. * camel-mime-part-utils.c: Revert back to using e_iconv from GAL. * camel-mime-utils.c: Revert back to using e_iconv from GAL. * camel-sasl-digest-md5.c: Revert back to using e-iconv from GAL. svn path=/trunk/; revision=20056
17 lines
504 B
C
17 lines
504 B
C
|
|
#ifndef _CAMEL_UTF8_H
|
|
#define _CAMEL_UTF8_H
|
|
|
|
void camel_utf8_putc(unsigned char **ptr, guint32 c);
|
|
guint32 camel_utf8_getc(const unsigned char **ptr);
|
|
guint32 camel_utf8_getc_limit (const unsigned char **ptr, const unsigned char *end);
|
|
|
|
/* utility func for utf8 gstrings */
|
|
void g_string_append_u(GString *out, guint32 c);
|
|
|
|
/* convert utf7 to/from utf8, actually this is modified IMAP utf7 */
|
|
char *camel_utf7_utf8(const char *ptr);
|
|
char *camel_utf8_utf7(const char *ptr);
|
|
|
|
#endif /* ! _CAMEL_UTF8_H */
|