Lines Matching refs:tc
114 * Putchar(tc) does what putbyte(c) do for a byte c.
116 * a control character) as it is, while Putchar(tc) may expand the
117 * character tc to some byte sequnce that represents the character
121 Putchar(tchar tc)
125 if (isascii(tc&TRIM)) {
126 putbyte((int)tc);
129 tc &= TRIM;
130 n = wctomb(linp, tc);
168 * Putchar(tc) does what putbyte(c) do for a byte c.
173 Putchar(tchar tc)
175 putbyte((int)tc);