source:
trunk/sys/dietlibc/isgraph.c
@
171
| Last change on this file since 171 was 1, checked in by , 9 years ago | |
|---|---|
| File size: 187 bytes | |
| Line | |
|---|---|
| 1 | int __isgraph_ascii ( int ch ); |
| 2 | int __isgraph_ascii ( int ch ) { |
| 3 | return (unsigned int)(ch - '!') < 127u - '!'; |
| 4 | } |
| 5 | |
| 6 | int isgraph ( int ch ) __attribute__((weak,alias("__isgraph_ascii"))); |
Note: See TracBrowser
for help on using the repository browser.
