source: trunk/sys/dietlibc/isprint.c @ 353

Last change on this file since 353 was 1, checked in by alain, 7 years ago

First import

File size: 110 bytes
Line 
1#include <ctype.h>
2#include "dietlocale.h"
3
4int isprint (int ch) {
5  ch&=0x7f;
6  return (ch>=32 && ch<127);
7}
Note: See TracBrowser for help on using the repository browser.