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