diff options
author | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-05-04 07:05:14 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-05-04 07:05:14 +0000 |
commit | 72f72d64a422d6628c4796f5c0bf2e508f134214 (patch) | |
tree | 0c9ea90cc53310832c977265521fb44db24a515e /libwc/johab.h | |
parent | Adding upstream version 0.3 (diff) | |
download | w3m-72f72d64a422d6628c4796f5c0bf2e508f134214.tar.gz w3m-72f72d64a422d6628c4796f5c0bf2e508f134214.zip |
Adding upstream version 0.5.1upstream/0.5.1
Diffstat (limited to '')
-rw-r--r-- | libwc/johab.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/libwc/johab.h b/libwc/johab.h new file mode 100644 index 0000000..f0dd6cd --- /dev/null +++ b/libwc/johab.h @@ -0,0 +1,63 @@ + +#ifndef _WC_JOHAB_H +#define _WC_JOHAB_H + +#define WC_C_JOHAB_ERROR 0xFFFFFFFFU + +#define WC_JOHAB_NOSTATE 0 +#define WC_JOHAB_HANGUL1 1 /* 0x84 - 0xD3 */ +#define WC_JOHAB_HANJA1 2 /* 0xD8 - 0xDE, 0xE0 - 0xF9 */ + +#define WC_JOHAB_MAP_C0 0x0 +#define WC_JOHAB_MAP_GL 0x1 +#define WC_JOHAB_MAP_UJ 0x2 +#define WC_JOHAB_MAP_UH 0x4 +#define WC_JOHAB_MAP_C1 0x8 +#define WC_JOHAB_MAP_LJ 0x10 +#define WC_JOHAB_MAP_LH 0x20 + +#define WC_JOHAB_MAP_GH (WC_JOHAB_MAP_GL|WC_JOHAB_MAP_LH) +#define WC_JOHAB_MAP_GB (WC_JOHAB_MAP_GL|WC_JOHAB_MAP_LJ|WC_JOHAB_MAP_LH) +#define WC_JOHAB_MAP_JJ (WC_JOHAB_MAP_UJ|WC_JOHAB_MAP_LJ) +#define WC_JOHAB_MAP_JB (WC_JOHAB_MAP_UJ|WC_JOHAB_MAP_LJ|WC_JOHAB_MAP_LH) +#define WC_JOHAB_MAP_HB (WC_JOHAB_MAP_UH|WC_JOHAB_MAP_LJ|WC_JOHAB_MAP_LH) +#define WC_JOHAB_MAP_CJ (WC_JOHAB_MAP_C1|WC_JOHAB_MAP_LJ) +#define WC_JOHAB_MAP_CB (WC_JOHAB_MAP_C1|WC_JOHAB_MAP_LJ|WC_JOHAB_MAP_LH) + +#define WC_JOHAB_MAP_1 0xF +#define WC_JOHAB_MAP_2 0x30 + +#define WC_JOHAB1_N(c) wc_johab1_to_N(c) +#define WC_N_JOHAB1(c) wc_N_to_johab1(c) +#define WC_CS94x128UL_N(U,L) (((U) - 0x21) * 0x80 + (L)) +#define WC_CS94x128_N(c) WC_CS94x128UL_N(((c) >> 8) & 0x7F, (c) & 0x7F) +#define WC_N_CS94x128U(c) ((c) / 0x80 + 0x21) +#define WC_N_CS94x128L(c) ((c) % 0x80) +#define WC_N_CS94x128(c) ((WC_N_CS94x128U(c) << 8) + WC_N_CS94x128L(c)) +#define WC_JOHAB2UL_N(U,L) (((U) - 0x84) * 0xBC + (L) - (((L) < 0x81) ? 0x41 : 0x43)) +#define WC_JOHAB2_N(c) WC_JOHAB2UL_N(((c) >> 8) & 0xFF, (c) & 0xFF) +#define WC_N_JOHAB2U(c) ((c) / 0xBC + 0x84) +#define WC_N_JOHAB2L(c) ((c) % 0xBC + (((c) % 0xBC < 0x3E) ? 0x41 : 0x43)) +#define WC_N_JOHAB2(c) ((WC_N_JOHAB2U(c) << 8) + WC_N_JOHAB2L(c)) +#ifndef WC_CS128W_N +#define WC_CS128WUL_N(U,L) ((U) * 0x80 + (L)) +#define WC_CS128W_N(c) WC_CS128WUL_N(((c) >> 8) & 0x7F, (c) & 0x7F) +#define WC_N_CS128WU(c) ((c) / 0x80) +#define WC_N_CS128WL(c) ((c) % 0x80) +#define WC_N_CS128W(c) ((WC_N_CS128WU(c) << 8) + WC_N_CS128WL(c)) +#endif + +extern wc_uchar WC_JOHAB_MAP[]; + +extern wc_wchar_t wc_johab_to_ksx1001(wc_wchar_t cc); +extern wc_wchar_t wc_ksx1001_to_johab(wc_wchar_t cc); +extern wc_wchar_t wc_ucs_to_johab(wc_uint32 ucs); +extern wc_uint32 wc_johab1_to_N(wc_uint32 cc); +extern wc_uint32 wc_N_to_johab1(wc_uint32 ucs); +extern wc_wchar_t wc_johab_to_cs128w(wc_wchar_t cc); +extern wc_wchar_t wc_cs128w_to_johab(wc_wchar_t cc); +extern Str wc_conv_from_johab(Str is, wc_ces ces); +extern void wc_push_to_johab(Str os, wc_wchar_t cc, wc_status *st); +extern Str wc_char_conv_from_johab(wc_uchar c, wc_status *st); + +#endif |