iswgraph

Tests a wide-character code in the current locale to determine if it is visible printable code (the space character is excluded).

Library:LibC
Classification:ANSI
Service:Characters and Strings

Syntax

  #include <wctype.h> 
   
  int  iswgraph (
     wint_t   wc);
  

Parameters

wc

(IN) Specifies the wide-character code to test.

Return Values

Returns a nonzero value when the wc argument is a printable code (except for the space code). Otherwise, it returns zero.

Remarks

The iswgraph function is similar to iswprint, except that the space code is not included in the code set that is being tested.

See Also