source:
trunk/sys/dietlibc/isprint.c
@
95
Last change on this file since 95 was 1, checked in by , 8 years ago | |
---|---|
File size: 110 bytes |
Line | |
---|---|
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.