Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
iswcntrl.c File Reference
#include <wctype.h>
Include dependency graph for iswcntrl.c:

Go to the source code of this file.

Functions

int iswcntrl (wint_t wc)
 

Function Documentation

◆ iswcntrl()

int iswcntrl ( wint_t  wc)

Definition at line 3 of file iswcntrl.c.

4 {
5  return (unsigned)wc < 32 || (unsigned)(wc - 0x7f) < 33 || (unsigned)(wc - 0x2028) < 2 ||
6  (unsigned)(wc - 0xfff9) < 3;
7 }

Referenced by iswctype().

Here is the caller graph for this function: