Lines Matching defs:wc
36 unsigned short wc = iso8859_3_2uni[c-0xa0];
37 if (wc != 0xfffd) {
38 *pwc = (ucs4_t) wc;
81 iso8859_3_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
84 if (wc < 0x00a0) {
85 *r = (unsigned char) wc;
88 else if (wc >= 0x00a0 && wc < 0x0100)
89 c = iso8859_3_page00[wc-0x00a0];
90 else if (wc >= 0x0108 && wc < 0x0180)
91 c = iso8859_3_page01[wc-0x0108];
92 else if (wc >= 0x02d8 && wc < 0x02e0)
93 c = iso8859_3_page02[wc-0x02d8];