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