fix fork of processes with active async io contexts
[musl.git] / src / ctype / iswcntrl.c
blobfeccfcd5bcc330c9e499c3a7e1c64bf0180018bf
1 #include <wctype.h>
3 int iswcntrl(wint_t wc)
5 return (unsigned)wc < 32
6 || (unsigned)(wc-0x7f) < 33
7 || (unsigned)(wc-0x2028) < 2
8 || (unsigned)(wc-0xfff9) < 3;
11 int __iswcntrl_l(wint_t c, locale_t l)
13 return iswcntrl(c);
16 weak_alias(__iswcntrl_l, iswcntrl_l);