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