source: trunk/sys/dietlibc/iswprint.c @ 186

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

First import

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