source:
trunk/sys/dietlibc/isprint.c
@
233
Last change on this file since 233 was 1, checked in by , 8 years ago | |
---|---|
File size: 110 bytes |
Rev | Line | |
---|---|---|
[1] | 1 | #include <ctype.h> |
2 | #include "dietlocale.h" | |
3 | ||
4 | int isprint (int ch) { | |
5 | ch&=0x7f; | |
6 | return (ch>=32 && ch<127); | |
7 | } |
Note: See TracBrowser
for help on using the repository browser.