mirror of
https://github.com/vbatts/bvi.git
synced 2024-11-21 16:15:43 +00:00
16 lines
309 B
Text
16 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(".");
|
||
|
}
|
||
|
}
|