source: trunk/sys/dietlibc/iswlower.c @ 412

Last change on this file since 412 was 1, checked in by alain, 7 years ago

First import

File size: 206 bytes
Line 
1#include <wctype.h>
2
3int __iswlower_ascii(wint_t c);
4int __iswlower_ascii(wint_t c) {
5  return (unsigned int) (c - 'a') < 26u;
6}
7
8int iswlower ( wint_t ch ) __attribute__((weak,alias("__iswlower_ascii")));
Note: See TracBrowser for help on using the repository browser.