Date: Mon, 10 Jan 2000 00:05:27 -0500 (EST) From: Mikhail Teterin <mi@kot.ne.mediaone.net> To: stable@freebsd.org Subject: isprint(3) and LANG/LOCALE Message-ID: <200001100505.AAA86278@rtfm.newton>
next in thread | raw e-mail | index | archive | help
Is the subject supposed to consider the LANG setting? I'd think so, but it does not :( Send-pr? I have a bunch of jpeg-images with comments in Russian. rdjpeg(1) reads them, but because isprint(3) says 0, prints every character's octal value :(. Thanks! -mi #include <stdio.h> #include <ctype.h> main(int argc, char *argv[]) { char *c; for(c = argv[argc-1]; *c; *c++) printf("for %c isprint() returns %d\n", *c, isprint(*c)); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200001100505.AAA86278>