summaryrefslogtreecommitdiffstats
path: root/charset.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-09-12 19:51:47 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-09-12 19:51:47 +0000
commit43c36fea59cd40d1f7393b921acf477590429fef (patch)
treec649bf4b9c808786047702e222a472af0c60c167 /charset.h
parent3d99b5254b7a81d4ce32663c53291ab66e406212 (diff)
[patch-0.93.2i.ru.mmultiple_charsets.gz] This patch adds
support for international character sets. Currently, mutt knows about the following character sets and is able to convert between them: iso-8859-1, ..., iso-8859-9, koi8-r, windows-1251, x-cp866. (From: Ruslan Ermilov <ru@ucb.crimea.ua>)
Diffstat (limited to 'charset.h')
-rw-r--r--charset.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/charset.h b/charset.h
new file mode 100644
index 00000000..b2c6878c
--- /dev/null
+++ b/charset.h
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 1998 Ruslan Ermilov <ru@ucb.crimea.ua>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifndef _CHARSET_H
+#define _CHARSET_H
+
+typedef int UNICODE_MAP[128];
+
+typedef struct
+{
+ char *name;
+ UNICODE_MAP *map;
+} CHARSET;
+
+CHARSET *mutt_get_charset(const char *);
+int mutt_display_char(int, CHARSET *, CHARSET *);
+int mutt_display_string(char *, CHARSET *, CHARSET *);
+
+#endif /* _CHARSET_H */