Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
iswcntrl.c
Go to the documentation of this file.
1 #include <wctype.h>
2 
3 int iswcntrl(wint_t wc)
4 {
5  return (unsigned)wc < 32 || (unsigned)(wc - 0x7f) < 33 || (unsigned)(wc - 0x2028) < 2 ||
6  (unsigned)(wc - 0xfff9) < 3;
7 }
unsigned wint_t
Definition: wctype.h:11
int iswcntrl(wint_t wc)
Definition: iswcntrl.c:3