aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/dict/kuten.h
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2003-11-25 03:37:45 +0000
committerrsc <devnull@localhost>2003-11-25 03:37:45 +0000
commit08708877939323c1e1cb87210193ec25fc472ff7 (patch)
treebd34e2144a3e9532ab228619d7ae8d4a0078aeeb /src/cmd/dict/kuten.h
parent091f74d0a0db5ba1e098a518922525cb032a97b4 (diff)
downloadplan9port-08708877939323c1e1cb87210193ec25fc472ff7.tar.gz
plan9port-08708877939323c1e1cb87210193ec25fc472ff7.tar.bz2
plan9port-08708877939323c1e1cb87210193ec25fc472ff7.zip
add dict
Diffstat (limited to 'src/cmd/dict/kuten.h')
-rw-r--r--src/cmd/dict/kuten.h114
1 files changed, 114 insertions, 0 deletions
diff --git a/src/cmd/dict/kuten.h b/src/cmd/dict/kuten.h
new file mode 100644
index 00000000..af59d833
--- /dev/null
+++ b/src/cmd/dict/kuten.h
@@ -0,0 +1,114 @@
+/*
+ following astonishing goo courtesy of kogure.
+*/
+/*
+ * MicroSoft Kanji Encoding (SJIS) Transformation
+ */
+
+/*
+ * void
+ * J2S(unsigned char *_h, unsigned char *_l)
+ * JIS X 208 to MS kanji transformation.
+ *
+ * Calling/Exit State:
+ * _h and _l should be in their valid range.
+ * No return value.
+ */
+#define J2S(_h, _l) { \
+ /* lower: 21-7e >> 40-9d,9e-fb >> 40-7e,(skip 7f),80-fc */ \
+ if (((_l) += (((_h)-- % 2) ? 0x1f : 0x7d)) > 0x7e) (_l)++; \
+ /* upper: 21-7e >> 81-af >> 81-9f,(skip a0-df),e0-ef */ \
+ if (((_h) = ((_h) / 2 + 0x71)) > 0x9f) (_h) += 0x40; \
+}
+
+/*
+ * void
+ * S2J(unsigned char *_h, unsigned char *_l)
+ * MS kanji to JIS X 208 transformation.
+ *
+ * Calling/Exit State:
+ * _h and _l should be in valid range.
+ * No return value.
+ */
+#define S2J(_h, _l) { \
+ /* lower: 40-7e,80-fc >> 21-5f,61-dd >> 21-7e,7f-dc */ \
+ if (((_l) -= 0x1f) > 0x60) (_l)--; \
+ /* upper: 81-9f,e0-ef >> 00-1e,5f-6e >> 00-2e >> 21-7d */ \
+ if (((_h) -= 0x81) > 0x5e) (_h) -= 0x40; (_h) *= 2, (_h) += 0x21; \
+ /* upper: ,21-7d >> ,22-7e ; lower: ,7f-dc >> ,21-7e */ \
+ if ((_l) > 0x7e) (_h)++, (_l) -= 0x5e; \
+}
+
+/*
+ * int
+ * ISJKANA(const unsigned char *_b)
+ * Tests given byte is in the range of JIS X 0201 katakana.
+ *
+ * Calling/Exit State:
+ * Returns 1 if it is, or 0 otherwise.
+ */
+#define ISJKANA(_b) (0xa0 <= (_b) && (_b) < 0xe0)
+
+/*
+ * int
+ * CANS2JH(const unsigned char *_h)
+ * Tests given byte is in the range of valid first byte of MS
+ * kanji code; either acts as a subroutine of CANS2J() macro
+ * or can be used to parse MS kanji encoded strings.
+ *
+ * Calling/Exit State:
+ * Returns 1 if it is, or 0 otherwise.
+ */
+#define CANS2JH(_h) ((0x81 <= (_h) && (_h) < 0xf0) && !ISJKANA(_h))
+
+/*
+ * int
+ * CANS2JL(const unsigned char *_l)
+ * Tests given byte is in the range of valid second byte of MS
+ * kanji code; acts as a subroutine of CANS2J() macro.
+ *
+ * Calling/Exit State:
+ * Returns 1 if it is, or 0 otherwise.
+ */
+#define CANS2JL(_l) (0x40 <= (_l) && (_l) < 0xfd && (_l) != 0x7f)
+
+/*
+ * int
+ * CANS2J(const unsigned char *_h, const unsinged char *_l)
+ * Tests given bytes form a MS kanji code point which can be
+ * transformed to a valid JIS X 208 code point.
+ *
+ * Calling/Exit State:
+ * Returns 1 if they are, or 0 otherwise.
+ */
+#define CANS2J(_h, _l) (CANS2JH(_h) && CANS2JL(_l))
+
+/*
+ * int
+ * CANJ2SB(const unsigned char *_b)
+ * Tests given bytes is in the range of valid 94 graphic
+ * character set; acts as a subroutine of CANJ2S() macro.
+ *
+ * Calling/Exit State:
+ * Returns 1 if it is, or 0 otherwise.
+ */
+#define CANJ2SB(_b) (0x21 <= (_b) && (_b) < 0x7f)
+
+/*
+ * int
+ * CANJ2S(const unsigned char *_h, const unsigned char *_l)
+ * Tests given bytes form valid JIS X 208 code points
+ * (which can be transformed to MS kanji).
+ *
+ * Calling/Exit State:
+ * Returns 1 if they are, or 0 otherwise.
+ */
+#define CANJ2S(_h, _l) (CANJ2SB(_h) && CANJ2SB(_l))
+
+#define JIS208MAX 8407
+#define GB2312MAX 8795
+#define BIG5MAX 13973
+
+extern Rune tabjis208[JIS208MAX]; /* runes indexed by kuten */
+extern Rune tabgb2312[GB2312MAX];
+extern Rune tabbig5[BIG5MAX];