Lines Matching defs:nextchar
587 wchar_t nextchar;
593 bytesconsumed = mbrtowc(&nextchar, inname, n, &state);
596 nextchar = *inname++;
599 file_octal(CAST(unsigned char, nextchar));
604 if (iswprint(nextchar)) {
605 printf("%lc", (wint_t)nextchar);
609 file_octal(CAST(unsigned char, nextchar));
668 wchar_t nextchar;
674 bytesconsumed = mbrtowc(&nextchar, s, n, &state);
677 nextchar = *s;
682 int w = wcwidth(nextchar);
684 || iswprint(nextchar)) ? (w > 0 ? w : 1) : 4;