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