| 1327 | // something else, if the character encoding is set differently. |
| 1328 | |
| 1329 | void PrintTab2(char ch, int cch) |
| 1330 | { |
| 1331 | int nCharsetSav = us.nCharset; |
| 1332 | |
| 1333 | us.nCharset = (us.nCharset > ccNone ? ccIBM : ccNone); |
| 1334 | PrintTab(ch, cch); |
| 1335 | us.nCharset = nCharsetSav; |
| 1336 | } |
| 1337 | |
| 1338 | |
| 1339 | // Print a string on the screen. Unlike the normal PrintSz(), here still |
no test coverage detected