diff options
Diffstat (limited to 'src/table/iso8859_1.h')
-rw-r--r-- | src/table/iso8859_1.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/table/iso8859_1.h b/src/table/iso8859_1.h new file mode 100644 index 0000000..e454506 --- /dev/null +++ b/src/table/iso8859_1.h @@ -0,0 +1,17 @@ +// +// AUTOMATICALLLY GENERATED by gentables +// +#ifdef ENCODING_DEFAULT + + +static uint32_t cs_iso8859_1_from_unicode (unicode_t unicode) { + if (unicode <= 0x00ff) return unicode; + return NOCHAR; +} + +#else + +#define cs_iso8859_1_from_unicode cs_unknown_from_unicode +#define cs_iso8859_1_to_unicode cs_unknown_to_unicode + +#endif |