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