source: trunk/sys/dietlibc/iswalpha.c @ 372

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

First import

File size: 229 bytes
Line 
1#include <ctype.h>
2#include <wctype.h>
3
4int __iswalpha_ascii(wint_t c);
5int __iswalpha_ascii(wint_t c) {
6  return (((unsigned char)c == c)?isalpha(c):0);
7}
8
9int iswalpha(wint_t c) __attribute__((weak,alias("__iswalpha_ascii")));
Note: See TracBrowser for help on using the repository browser.