source: trunk/sys/dietlibc/isblank.c @ 159

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

First import

File size: 85 bytes
Line 
1#include <ctype.h>
2
3int isblank ( int ch )
4{
5    return ch == ' '  ||  ch == '\t';
6}
Note: See TracBrowser for help on using the repository browser.