diff options
author | 1 <NotZed@Ximian.com> | 2001-10-12 06:08:20 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-12 06:08:20 +0800 |
commit | a5fa3f992dd32fdf99bfcf550a8ce62df2b74d13 (patch) | |
tree | ae2d252c33e30e674ad58be332f3cd98e409e3db /camel/camel-charset-map.h | |
parent | 736e73548cb39a7aaad61f01704ac60ccb74f79e (diff) | |
download | gsoc2013-evolution-a5fa3f992dd32fdf99bfcf550a8ce62df2b74d13.tar.gz gsoc2013-evolution-a5fa3f992dd32fdf99bfcf550a8ce62df2b74d13.tar.zst gsoc2013-evolution-a5fa3f992dd32fdf99bfcf550a8ce62df2b74d13.zip |
Removed charset/locale charset lookup and iconv_open/close functions,
2001-10-11 <NotZed@Ximian.com>
* camel-charset-map.[ch]: Removed charset/locale charset lookup
and iconv_open/close functions, moved to gal. Fixed all callers.
svn path=/trunk/; revision=13602
Diffstat (limited to 'camel/camel-charset-map.h')
-rw-r--r-- | camel/camel-charset-map.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/camel/camel-charset-map.h b/camel/camel-charset-map.h index 749f02dfc2..581e8e8488 100644 --- a/camel/camel-charset-map.h +++ b/camel/camel-charset-map.h @@ -30,8 +30,6 @@ struct _CamelCharset { int level; }; -void camel_charset_map_init (void); - void camel_charset_init(CamelCharset *); void camel_charset_step(CamelCharset *, const char *in, int len); const char *camel_charset_best_name(CamelCharset *); @@ -39,11 +37,4 @@ const char *camel_charset_best_name(CamelCharset *); /* helper function */ const char *camel_charset_best(const char *in, int len); -const char *camel_charset_locale_name (void); - -const char *camel_charset_to_iconv (const char *name); - -iconv_t camel_charset_iconv_open(const char *to, const char *from); -void camel_charset_iconv_close(iconv_t ic); - #endif /* ! _CAMEL_CHARSET_MAP_H */ |