w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

hkscs.h (1323B)


      1 
      2 #ifndef _WC_HKSCS_H
      3 #define _WC_HKSCS_H
      4 
      5 #define WC_HKSCS_NOSTATE	0
      6 #define WC_HKSCS_MBYTE1	1	/* 0x88 - 0xFE */
      7 
      8 #define WC_HKSCS_MAP_C0	0x0
      9 #define WC_HKSCS_MAP_GL	0x1
     10 #define WC_HKSCS_MAP_C1	0x2
     11 #define WC_HKSCS_MAP_LB	0x4
     12 #define WC_HKSCS_MAP_UB	(0x8  | WC_HKSCS_MAP_LB)
     13 #define WC_HKSCS_MAP_UH	0x10
     14 
     15 #define WC_HKSCSUL_N(U,L)	(((U) - 0x88) * 0x9D \
     16 				+ (L) - (((L) < 0xA1) ? 0x40 : 0x62))
     17 #define WC_HKSCS_N(c)	WC_HKSCSUL_N(((c) >> 8) & 0xFF, (c) & 0xFF)
     18 #define WC_N_HKSCSU(c)	((c) / 0x9D + 0x88)
     19 #define WC_N_HKSCSL(c)	((c) % 0x9D + (((c) % 0x9D < 0x3F) ? 0x40 : 0x62))
     20 #define WC_N_HKSCS(c)	((WC_N_HKSCSU(c) << 8) + WC_N_HKSCSL(c))
     21 #ifndef WC_CS128W_N
     22 #define WC_CS128WUL_N(U,L)	((U) * 0x80 + (L))
     23 #define WC_CS128W_N(c)		WC_CS128WUL_N(((c) >> 8) & 0x7F, (c) & 0x7F)
     24 #define WC_N_CS128WU(c)		((c) / 0x80)
     25 #define WC_N_CS128WL(c)		((c) % 0x80)
     26 #define WC_N_CS128W(c)		((WC_N_CS128WU(c) << 8) + WC_N_CS128WL(c))
     27 #endif
     28 
     29 extern wc_uchar WC_HKSCS_MAP[];
     30 
     31 extern wc_wchar_t wc_hkscs_to_cs128w(wc_wchar_t cc);
     32 extern wc_wchar_t wc_cs128w_to_hkscs(wc_wchar_t cc);
     33 extern wc_uint32  wc_hkscs_to_N(wc_uint32 c);
     34 extern Str        wc_conv_from_hkscs(Str is, wc_ces ces);
     35 extern void       wc_push_to_hkscs(Str os, wc_wchar_t cc, wc_status *st);
     36 extern Str        wc_char_conv_from_hkscs(wc_uchar c, wc_status *st);
     37 
     38 #endif