diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-12 22:34:25 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-12 22:34:25 -0800 |
commit | 8367c03ef07473cff4f1b6f0645e1ce9ae17c94c (patch) | |
tree | 3f5a7e765b4388f5b7f87741052a08198043ac6e /utf8.h | |
parent | aa4420347f132039a3e37d6996d1e31096fc10de (diff) | |
download | txr-8367c03ef07473cff4f1b6f0645e1ce9ae17c94c.tar.gz txr-8367c03ef07473cff4f1b6f0645e1ce9ae17c94c.tar.bz2 txr-8367c03ef07473cff4f1b6f0645e1ce9ae17c94c.zip |
Fixed broken utf8_from.
Added utf8_encode, utf8_decoder_init, utf8_decode.
Diffstat (limited to 'utf8.h')
-rw-r--r-- | utf8.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -28,5 +28,19 @@ size_t utf8_from(wchar_t *, const unsigned char *); size_t utf8_to(unsigned char *, const wchar_t *); wchar_t *utf8_dup_from(const unsigned char *); unsigned char *utf8_dup_to(const wchar_t *); + +enum utf8_state { utf8_init, utf8_more1, utf8_more2, utf8_more3 }; + +typedef struct utf8_decoder { + enum utf8_state state; + wchar_t wch; + int head, tail, back; + int buf[8]; +} utf8_decoder_t; + +int utf8_encode(wchar_t, int (*put)(int ch, void *ctx), void *ctx); +void utf8_decoder_init(utf8_decoder_t *); +wint_t utf8_decode(utf8_decoder_t *,int (*get)(void *ctx), void *ctx); + FILE *w_fopen(const wchar_t *, const wchar_t *); FILE *w_popen(const wchar_t *, const wchar_t *); |