iswgraph
From cppreference.com
| Defined in header <wctype.h>
|
||
| int iswgraph( wint_t ch ); |
(since C95) | |
Checks if the given wide character has a graphical representation, i.e. it is either a number (0123456789), an uppercase letter (ABCDEFGHIJKLMNOPQRSTUVWXYZ), a lowercase letter (abcdefghijklmnopqrstuvwxyz), a punctuation character(!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~) or any graphical character specific to the current C locale.
Parameters
| ch | - | wide character |
Return value
Non-zero value if the wide character has a graphical representation character, zero otherwise.