From b51662658395b9b6ce87d5b9b2a331644d4c78af Mon Sep 17 00:00:00 2001 From: ache Date: Mon, 30 Sep 1996 15:45:36 +0000 Subject: Activate LC_CTYPE locale and additionly use !isprint() for 8bit characters --- bin/cat/cat.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'bin/cat') diff --git a/bin/cat/cat.c b/bin/cat/cat.c index 1e8be46..73d77ef 100644 --- a/bin/cat/cat.c +++ b/bin/cat/cat.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cat.c,v 1.3 1995/10/03 12:46:37 bde Exp $ + * $Id: cat.c,v 1.4 1996/09/28 21:19:27 imp Exp $ */ #ifndef lint @@ -53,6 +53,7 @@ static char sccsid[] = "@(#)cat.c 8.2 (Berkeley) 4/27/95"; #include #include #include +#include #include #include #include @@ -75,6 +76,8 @@ main(argc, argv) extern int optind; int ch; + setlocale(LC_CTYPE, ""); + while ((ch = getopt(argc, argv, "benstuv")) != EOF) switch (ch) { case 'b': @@ -179,7 +182,7 @@ cook_buf(fp) continue; } } else if (vflag) { - if (!isascii(ch)) { + if (!isascii(ch) && !isprint(ch)) { if (putchar('M') == EOF || putchar('-') == EOF) break; ch = toascii(ch); -- cgit v1.1