Lines Matching defs:wc
77 iso8859_16_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
80 if (wc < 0x00a0) {
81 *r = (unsigned char) wc;
84 else if (wc >= 0x00a0 && wc < 0x0180)
85 c = iso8859_16_page00[wc-0x00a0];
86 else if (wc >= 0x0218 && wc < 0x0220)
87 c = iso8859_16_page02[wc-0x0218];
88 else if (wc >= 0x2018 && wc < 0x2020)
89 c = iso8859_16_page20[wc-0x2018];
90 else if (wc == 0x20ac)