Make ls ctype-aware

This commit is contained in:
Andrey A. Chernov 1994-09-21 20:23:07 +00:00
parent 36317691a4
commit 24891fb1df

View File

@ -58,7 +58,7 @@ prcopy(src, dest, len)
int ch;
while (len--) {
ch = *src++;
ch = *src++ & 0xff;
*dest++ = isprint(ch) ? ch : '?';
}
}