Lines Matching defs:wc
108 cp1256_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
111 if (wc < 0x0080) {
112 *r = (unsigned char) wc;
115 else if (wc >= 0x00a0 && wc < 0x0100)
116 c = cp1256_page00[wc-0x00a0];
117 else if (wc >= 0x0150 && wc < 0x0198)
118 c = cp1256_page01[wc-0x0150];
119 else if (wc == 0x02c6)
121 else if (wc >= 0x0608 && wc < 0x06d8)
122 c = cp1256_page06[wc-0x0608];
123 else if (wc >= 0x2008 && wc < 0x2040)
124 c = cp1256_page20[wc-0x2008];
125 else if (wc == 0x20ac)
127 else if (wc == 0x2122)