Searched refs:pmb (Results 1 – 3 of 3) sorted by relevance
14 unsigned char pmb[MB_LEN_MAX]; in wctob() local22 return __WCTOMB ((char *) pmb, wc, &mbs) == 1 ? (int) pmb[0] : EOF; in wctob()
366 unsigned char pmb[MB_LEN_MAX]; in __wctob() local371 return __WCTOMB ((char *) pmb, wc, &mbs) == 1 ? (int) pmb[0] : 0; in __wctob()
4845 pwc to pmb and convert to array to avoid buffer overflow. Rename c to4846 wc. Check wc for WEOF instead of for EOF. Return first byte of pmb if