Lines Matching refs:pmb
94 char *pmb; in tstostr() local
117 pmb = to; in tstostr()
119 if ((len = wctomb(pmb, wc)) <= 0) { in tstostr()
120 *pmb = (unsigned char)wc; in tstostr()
123 pmb += len; in tstostr()
125 *pmb = (char)0; in tstostr()
143 char *pmb = from; in mbstotcs() local
151 while (*pmb) { in mbstotcs()
152 if ((j = mbtowc(&wc, pmb, MB_CUR_MAX)) <= 0) { in mbstotcs()
155 pmb += j; in mbstotcs()
161 while (*pmb) { in mbstotcs()
162 if ((j = mbtowc(&wc, pmb, MB_CUR_MAX)) <= 0) { in mbstotcs()
163 wc = (unsigned char)*pmb; in mbstotcs()
166 pmb += j; in mbstotcs()