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/char_conv.c | |
parent | Adding upstream version 0.3 (diff) | |
download | w3m-1ef51c20e0ea7b35c8c9cad6f9d9bc1e16664cc5.tar.gz w3m-1ef51c20e0ea7b35c8c9cad6f9d9bc1e16664cc5.zip |
Adding upstream version 0.5.1upstream/0.5.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); +} |