Home | History | Annotate | Download | only in lcUniConv

Lines Matching refs:wc

36     unsigned short wc = iso8859_7_2uni[c-0xa0];
37 if (wc != 0xfffd) {
38 *pwc = (ucs4_t) wc;
69 iso8859_7_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
72 if (wc < 0x00a0) {
73 *r = (unsigned char) wc;
76 else if (wc >= 0x00a0 && wc < 0x00c0)
77 c = iso8859_7_page00[wc-0x00a0];
78 else if (wc >= 0x0380 && wc < 0x03d0)
79 c = iso8859_7_page03[wc-0x0380];
80 else if (wc >= 0x2010 && wc < 0x2020)
81 c = iso8859_7_page20[wc-0x2010];