Lines Matching refs:wc
32 unsigned short wc = iso8859_8_2uni[c-0xa0];
33 if (wc != 0xfffd) {
34 *pwc = (ucs4_t) wc;
70 iso8859_8_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
73 if (wc < 0x00a0) {
74 *r = (unsigned char) wc;
77 else if (wc >= 0x00a0 && wc < 0x00f8)
78 c = iso8859_8_page00[wc-0x00a0];
79 else if (wc >= 0x05d0 && wc < 0x05f0)
80 c = iso8859_8_page05[wc-0x05d0];
81 else if (wc >= 0x2008 && wc < 0x2018)
82 c = iso8859_8_page20[wc-0x2008];