source: trunk/sys/dietlibc/isascii.c @ 402

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

First import

File size: 84 bytes
Line 
1#include <ctype.h>
2
3int isascii ( int ch ) 
4{
5    return (unsigned int)ch < 128u;
6}
Note: See TracBrowser for help on using the repository browser.