aboutsummaryrefslogtreecommitdiff
path: root/src/codeconv.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-26 09:22:37 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-26 09:22:37 +0000
commit5355921a7b4e9e5afcb9954ef7777e82be390216 (patch)
tree890208eb188f944f03df59623c7c191f9bbbed32 /src/codeconv.h
parent83c0ae8f0766ada0da644fc4321868be4e701273 (diff)
codeconv.[ch]: made encoding-specific functions static, and removed redundant code.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@43 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/codeconv.h')
-rw-r--r--src/codeconv.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/codeconv.h b/src/codeconv.h
index 11252aa1..e416249f 100644
--- a/src/codeconv.h
+++ b/src/codeconv.h
@@ -169,34 +169,11 @@ struct _CodeConverter
#define C_INTERNAL C_UTF_8
#define CS_INTERNAL CS_UTF_8
-void conv_jistoeuc (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_euctojis (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_sjistoeuc (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_anytoeuc (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_anytojis (gchar *outbuf, gint outlen, const gchar *inbuf);
-
-void conv_jistoutf8 (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_sjistoutf8 (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_euctoutf8 (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_anytoutf8 (gchar *outbuf, gint outlen, const gchar *inbuf);
-
-void conv_unreadable_eucjp (gchar *str);
-void conv_unreadable_8bit (gchar *str);
-void conv_unreadable_latin (gchar *str);
-void conv_unreadable_locale (gchar *str);
-
//void conv_mb_alnum(gchar *str);
CharSet conv_guess_ja_encoding(const gchar *str);
-void conv_jistodisp (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_sjistodisp (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_euctodisp (gchar *outbuf, gint outlen, const gchar *inbuf);
void conv_utf8todisp (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_anytodisp (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_ustodisp (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_latintodisp (gchar *outbuf, gint outlen, const gchar *inbuf);
-void conv_noconv (gchar *outbuf, gint outlen, const gchar *inbuf);
void conv_localetodisp (gchar *outbuf, gint outlen, const gchar *inbuf);
CodeConverter *conv_code_converter_new (const gchar *src_charset);