source:
trunk/sys/dietlibc/ispunct.c
@
67
| Last change on this file since 67 was 1, checked in by , 9 years ago | |
|---|---|
| File size: 223 bytes | |
| Line | |
|---|---|
| 1 | #include <ctype.h> |
| 2 | |
| 3 | int __ispunct_ascii ( int ch ); |
| 4 | int __ispunct_ascii ( int ch ) |
| 5 | { |
| 6 | return isprint (ch) && !isalnum (ch) && !isspace (ch); |
| 7 | } |
| 8 | |
| 9 | int ispunct ( int ch ) __attribute__((weak,alias("__ispunct_ascii"))); |
Note: See TracBrowser
for help on using the repository browser.
