This documentation is copyright © 1998-2001 Sandro Sigala <sandro@sigala.it>.
All rights reserved.
Released under the GNU General Public License.
iswspace
Prototype
#include <wctype.h>
int iswspace(int c);
Description
In the ``C'' locale, returns a true value if the c
character is a
standard white-space character
(space ' '
, form feed '\f'
, new line '\n'
, carriage return
'\r'
, horizontal tab '\t'
, and vertical tab '\v'
). In other
implementation-defined set of characters returns true
for the characters for which isalnum
is false.
References
ISO C 9899:1990 XXX