Searched refs:Vdraw (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/tcsh/ |
H A D | ed.refresh.c | 46 static void Vdraw (Char, int); 198 Vdraw('\0', 0); /* assure end of line */ in Draw() 204 Vdraw(' ', 1); in Draw() 208 Vdraw('^' | attr, 1); in Draw() 210 Vdraw('?' | attr, 1); in Draw() 214 Vdraw(c | 0100 | attr, 1); in Draw() 216 Vdraw(_toebcdic[_toascii[c]|0100] | attr, 1); in Draw() 221 Vdraw('\\' | attr, 1); in Draw() 222 Vdraw((((c >> 6) & 7) + '0') | attr, 1); in Draw() 223 Vdraw((((c >> 3) & 7) + '0') | attr, 1); in Draw() [all …]
|