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