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