diff options
author | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-05-04 07:18:09 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-05-04 07:18:09 +0000 |
commit | 5f8e0f8ef9a422691dd72e8a953a42a41478fcb4 (patch) | |
tree | 4b2df4796a534793648b3c4fc532fc36bd0cd525 /libwc/char_conv.c | |
parent | Releasing debian version 0.3-2.4 (diff) | |
download | w3m-5f8e0f8ef9a422691dd72e8a953a42a41478fcb4.tar.gz w3m-5f8e0f8ef9a422691dd72e8a953a42a41478fcb4.zip |
Releasing debian version 0.5.1-1debian/0.5.1-1
Diffstat (limited to 'libwc/char_conv.c')
-rw-r--r-- | libwc/char_conv.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libwc/char_conv.c b/libwc/char_conv.c new file mode 100644 index 0000000..4146667 --- /dev/null +++ b/libwc/char_conv.c @@ -0,0 +1,21 @@ + +#include "wc.h" + +static wc_ces char_conv_f_ces = 0, char_conv_t_ces = WC_CES_WTF; +static wc_status char_conv_st; + +void +wc_char_conv_init(wc_ces f_ces, wc_ces t_ces) +{ + wc_input_init(f_ces, &char_conv_st); + char_conv_st.state = -1; + char_conv_f_ces = f_ces; + char_conv_t_ces = t_ces; +} + +Str +wc_char_conv(char c) +{ + return wc_Str_conv((*char_conv_st.ces_info->char_conv)((wc_uchar)c, &char_conv_st), + WC_CES_WTF, char_conv_t_ces); +} |