Lines Matching defs:wc
42 unsigned short wc = cp1255_2uni[c-0x80];
43 if (wc != 0xfffd) {
44 *pwc = (ucs4_t) wc;
92 cp1255_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
95 if (wc < 0x0080) {
96 *r = (unsigned char) wc;
99 else if (wc >= 0x00a0 && wc < 0x00f8)
100 c = cp1255_page00[wc-0x00a0];
101 else if (wc == 0x0192)
103 else if (wc >= 0x02c0 && wc < 0x02e0)
104 c = cp1255_page02[wc-0x02c0];
105 else if (wc >= 0x05b0 && wc < 0x05f8)
106 c = cp1255_page05[wc-0x05b0];
107 else if (wc >= 0x2008 && wc < 0x2040)
108 c = cp1255_page20[wc-0x2008];
109 else if (wc == 0x20aa)
111 else if (wc == 0x20ac)
113 else if (wc == 0x2122)