Note what the two new character encoding tables in charsets.c are.

svn path=/trunk/; revision=53833
This commit is contained in:
Guy Harris 2013-12-07 22:45:37 +00:00
parent c193f9c9e4
commit 3c2bd00ccf
2 changed files with 12 additions and 0 deletions

View File

@ -168,6 +168,12 @@ EBCDIC_to_ASCII1(guint8 c)
return EBCDIC_translate_ASCII[c];
}
/*
* Translation tables that map the upper 128 code points in single-byte
* "extended ASCII" character encodings to Unicode code points in the
* Basic Multilingual Plane.
*/
/* REPLACEMENT CHARACTER */
#define UNREPL 0xFFFD

View File

@ -39,6 +39,12 @@ void EBCDIC_to_ASCII(guint8 *buf, guint bytes);
WS_DLL_PUBLIC
guint8 EBCDIC_to_ASCII1(guint8 c);
/*
* Translation tables that map the upper 128 code points in single-byte
* "extended ASCII" character encodings to Unicode code points in the
* Basic Multilingual Plane.
*/
/* Table for windows-1250 */
extern const gunichar2 charset_table_cp1250[0x80];