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

Go to the source code of this file.

Functions

int iswgraph (wint_t wc)
 

Function Documentation

◆ iswgraph()

int iswgraph ( wint_t  wc)

Definition at line 3 of file iswgraph.c.

4 {
5  /* ISO C defines this function as: */
6  return !iswspace(wc) && iswprint(wc);
7 }
int iswprint(wint_t)
Definition: iswprint.c:10
int iswspace(wint_t)
Definition: iswspace.c:8

References iswprint(), and iswspace().

Referenced by iswctype().

Here is the caller graph for this function: