source: trunk/sys/dietlibc/isspace.c @ 372

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

First import

File size: 214 bytes
Line 
1#include <ctype.h>
2
3int __isspace_ascii ( int ch );
4int __isspace_ascii ( int ch )
5{
6    return (unsigned int)(ch - 9) < 5u  ||  ch == ' ';
7}
8
9int isspace ( int ch ) __attribute__((weak,alias("__isspace_ascii")));
Note: See TracBrowser for help on using the repository browser.