diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-09-22 21:02:15 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-09-22 21:02:15 +0000 |
commit | 604c11affe988bab23c87598c02248fff1d73f43 (patch) | |
tree | 6252cbbfd3cf703691a8ddbf1fdee5c1246b5faa /libwc/utf8.h | |
parent | * version.c.in: cvs version (diff) | |
download | w3m-604c11affe988bab23c87598c02248fff1d73f43.tar.gz w3m-604c11affe988bab23c87598c02248fff1d73f43.zip |
merge m17n patch
add libwc
Diffstat (limited to '')
-rw-r--r-- | libwc/utf8.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libwc/utf8.h b/libwc/utf8.h new file mode 100644 index 0000000..c56c68e --- /dev/null +++ b/libwc/utf8.h @@ -0,0 +1,23 @@ + +#ifndef _WC_UTF8_H +#define _WC_UTF8_H + +#define WC_C_UTF8_L2 0x80 +#define WC_C_UTF8_L3 0x800 +#define WC_C_UTF8_L4 0x10000 +#define WC_C_UTF8_L5 0x200000 +#define WC_C_UTF8_L6 0x4000000 + +#define WC_UTF8_NOSTATE 0 +#define WC_UTF8_NEXT 1 + +extern wc_uint8 WC_UTF8_MAP[]; + +extern size_t wc_ucs_to_utf8(wc_uint32 ucs, wc_uchar *utf8); +extern wc_uint32 wc_utf8_to_ucs(wc_uchar *utf8); +extern Str wc_conv_from_utf8(Str is, wc_ces ces); +extern void wc_push_to_utf8(Str os, wc_wchar_t cc, wc_status *st); +extern void wc_push_to_utf8_end(Str os, wc_status *st); +extern Str wc_char_conv_from_utf8(wc_uchar c, wc_status *st); + +#endif |