Lines Matching refs:wc
42 iso8859_15_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
45 if (wc < 0x00a0) {
46 *r = (unsigned char) wc;
49 else if (wc >= 0x00a0 && wc < 0x00c0)
50 c = iso8859_15_page00[wc-0x00a0];
51 else if (wc >= 0x00c0 && wc < 0x0100)
52 c = (unsigned char) wc;
53 else if (wc >= 0x0150 && wc < 0x0180)
54 c = iso8859_15_page01[wc-0x0150];
55 else if (wc == 0x20ac)