summaryrefslogtreecommitdiffstats
path: root/src/table/iso8859_1.h
diff options
context:
space:
mode:
authorroot <root>2004-08-04 03:29:28 +0000
committerroot <root>2004-08-04 03:29:28 +0000
commit62d259a764629941d193707968a83e8ac06e5d15 (patch)
tree4c347b0a804e1aa70653371df50c06c1a5a1f223 /src/table/iso8859_1.h
parent96b489e3dadb08fd33a8b5d72d5f81c7fb658f66 (diff)
*** empty log message ***
Diffstat (limited to 'src/table/iso8859_1.h')
-rw-r--r--src/table/iso8859_1.h17
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