ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/table/iso8859_9.h
(Generate patch)

Comparing rxvt-unicode/src/table/iso8859_9.h (file contents):
Revision 1.1 by pcg, Mon Nov 24 17:28:08 2003 UTC vs.
Revision 1.4 by root, Wed Aug 4 03:29:29 2004 UTC

16 0x00, 0x00, 0xdd, 0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 0x00, 0x00, 0xdd, 0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
17 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
18 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
19 0xde, 0xfe 19 0xde, 0xfe
20}; 20};
21static const uint16_t iso8859_9_t_0[] = {
22 0x00a0, 0x00a1, 0x00a2, 0x00a3, 0x00a4, 0x00a5, 0x00a6, 0x00a7, 0x00a8, 0x00a9, 0x00aa, 0x00ab,
23 0x00ac, 0x00ad, 0x00ae, 0x00af, 0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x00b6, 0x00b7,
24 0x00b8, 0x00b9, 0x00ba, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00bf, 0x00c0, 0x00c1, 0x00c2, 0x00c3,
25 0x00c4, 0x00c5, 0x00c6, 0x00c7, 0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf,
26 0x011e, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x00d7, 0x00d8, 0x00d9, 0x00da, 0x00db,
27 0x00dc, 0x0130, 0x015e, 0x00df, 0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x00e7,
28 0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef, 0x011f, 0x00f1, 0x00f2, 0x00f3,
29 0x00f4, 0x00f5, 0x00f6, 0x00f7, 0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x0131, 0x015f, 0x00ff
30};
31 21
32struct rxvt_codeset_conv_iso8859_9 : rxvt_codeset_conv { 22static uint32_t cs_iso8859_9_from_unicode (unicode_t unicode) {
33 uint32_t from_unicode (uint32_t unicode) const {
34 if (unicode <= 0x009f) return unicode; 23 if (unicode <= 0x009f) return unicode;
35 if (0x00a0 <= unicode && unicode <= 0x00ff) 24 if (0x00a0 <= unicode && unicode <= 0x00ff)
36 return iso8859_9_f_0[unicode - 0x00a0] == 0 ? NOCHAR : iso8859_9_f_0[unicode - 0x00a0]; 25 return iso8859_9_f_0[unicode - 0x00a0] == 0 ? NOCHAR : iso8859_9_f_0[unicode - 0x00a0];
37 if (0x011e <= unicode && unicode <= 0x015f) 26 if (0x011e <= unicode && unicode <= 0x015f)
38 return iso8859_9_f_256[unicode - 0x011e] == 0 ? NOCHAR : iso8859_9_f_256[unicode - 0x011e]; 27 return iso8859_9_f_256[unicode - 0x011e] == 0 ? NOCHAR : iso8859_9_f_256[unicode - 0x011e];
39 return NOCHAR; 28 return NOCHAR;
40 } 29}
41 uint32_t to_unicode (uint32_t enc) const {
42 if (enc <= 0x009f) return enc;
43 if (0x00a0 <= enc && enc <= 0x00ff)
44 return iso8859_9_t_0[enc - 0x00a0];
45 return NOCHAR;
46 }
47} rxvt_codeset_conv_iso8859_9;
48 30
49#else 31#else
50 32
51#define rxvt_codeset_conv_iso8859_9 rxvt_codeset_conv_unknown 33#define cs_iso8859_9_from_unicode cs_unknown_from_unicode
34#define cs_iso8859_9_to_unicode cs_unknown_to_unicode
52 35
53#endif 36#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines