ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/table/iso8859_1.h
Revision: 1.1
Committed: Mon Nov 24 17:28:08 2003 UTC (20 years, 7 months ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_1_0, rel-2_2, rel-2_3, rel-2_0, rel-1_9, rel-1-3, rel-1-2, before_astyle, after_astyle
Log Message:
*** empty log message ***

File Contents

# Content
1 //
2 // AUTOMATICALLLY GENERATED by gentables
3 //
4 #ifdef ENCODING_DEFAULT
5
6
7 struct rxvt_codeset_conv_iso8859_1 : rxvt_codeset_conv {
8 uint32_t from_unicode (uint32_t unicode) const {
9 if (unicode <= 0x00ff) return unicode;
10 return NOCHAR;
11 }
12 uint32_t to_unicode (uint32_t enc) const {
13 if (enc <= 0x00ff) return enc;
14 return NOCHAR;
15 }
16 } rxvt_codeset_conv_iso8859_1;
17
18 #else
19
20 #define rxvt_codeset_conv_iso8859_1 rxvt_codeset_conv_unknown
21
22 #endif