iswblank

Tests a wide-character code in the current locale to determine if it is a blank space or a tab.

Library:LibC
Classification:ANSI
Service:Characters and Strings

Syntax

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

Parameters

wc

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

Return Values

Returns nonzero if the wide-character code is a standard blank-space or tab in the current locale. Otherwise, it returns zero.

See Also