source: trunk/sys/dietlibc/iswcntrl.c @ 438

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

First import

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