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