source:
trunk/sys/dietlibc/isspace.c
@
251
Last change on this file since 251 was 1, checked in by , 8 years ago | |
---|---|
File size: 214 bytes |
Line | |
---|---|
1 | #include <ctype.h> |
2 | |
3 | int __isspace_ascii ( int ch ); |
4 | int __isspace_ascii ( int ch ) |
5 | { |
6 | return (unsigned int)(ch - 9) < 5u || ch == ' '; |
7 | } |
8 | |
9 | int isspace ( int ch ) __attribute__((weak,alias("__isspace_ascii"))); |
Note: See TracBrowser
for help on using the repository browser.