summaryrefslogtreecommitdiffstats
path: root/charset.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-09-15 13:36:40 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-09-15 13:36:40 +0000
commit52736ebb33c0e4ba015a1c7aafd3e21c67a3a82d (patch)
treec1450b67a74a55bd95de486954434182fab9c0e9 /charset.h
parent3992a9b6ac91c647964f2aef7abc23cfa5911229 (diff)
Generate the character set tables from i18n files.
Diffstat (limited to 'charset.h')
-rw-r--r--charset.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/charset.h b/charset.h
index d60dfaf8..88d53913 100644
--- a/charset.h
+++ b/charset.h
@@ -19,7 +19,11 @@
#ifndef _CHARSET_H
#define _CHARSET_H
-typedef int UNICODE_MAP[128];
+#define CHARSET_MAGIC "Mutt Character Set Definition 1.1\n"
+
+#ifndef _GEN_CHARSETS
+
+typedef int UNICODE_MAP[256];
typedef struct
{
@@ -27,10 +31,6 @@ typedef struct
UNICODE_MAP *map;
} CHARSET;
-#define CHARSET_MAGIC "Mutt Character Set Definition 1.0\n"
-
-#ifndef _GEN_CHARSETS
-
CHARSET *mutt_get_charset(const char *);
UNICODE_MAP *mutt_get_translation(const char *, const char *);
int mutt_display_char(int, UNICODE_MAP *);