1
0
Fork 0
mirror of https://github.com/vbatts/bvi.git synced 2024-11-21 16:15:43 +00:00
bvi/tmp
Gerhard Bürgmann 40e8e886bc bvi-1.4.1.src.tar.gz
3035255ca79e0464567d255baa5544f7794e2b7eb791dcc60cc339cf1aa01e28  bvi-1.4.1.src.tar.gz

https://bvi.sourceforge.net/download.html
2022-11-18 16:05:22 -05:00

15 lines
309 B
Text

if ((ch > 31) && (ch < 127)) {
PRINTF("%c", ch);
} else {
if (r_flag) {
if ((ch & 128) && ((ch > 159) && (ch < 255))) {
if (!no_tty) highlight();
PRINTF("%c", ch & 127);
if (!no_tty) normal();
} else {
PRINTF(".");
}
} else {
PRINTF(".");
}
}