| 1304 | // character on the screen 'n' times. |
| 1305 | |
| 1306 | void PrintTab(char ch, int cch) |
| 1307 | { |
| 1308 | while (cch-- > 0) |
| 1309 | PrintCh(ch); |
| 1310 | } |
| 1311 | |
| 1312 | |
| 1313 | // Like PrintCh() but ensure line drawing characters aren't converted to |
no test coverage detected