Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

iswspace()

Test a wide character to see if it's a whitespace character

Synopsis:

#include <wctype.h>

int iswspace( wint_t wc );

Arguments:

wc
The wide character you want to test.

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

The iswspace() function tests if the argument wc is a whitespace wide character of the class space. In the C locale, this class includes the space character, \f (form feed), \n (newline or linefeed), \r (carriage return), \t (horizontal tab), and \v (vertical tab).

Returns:

A nonzero value if the character is a member of the class space, or 0 otherwise.

Classification:

ANSI, POSIX 1003.1

Safety:
Cancellation point No
Interrupt handler Yes
Signal handler Yes
Thread Yes

Caveats:

The result is valid only for wchar_t arguments and WEOF.

See also:

isspace(), iswalnum(), iswalpha(), iswcntrl(), iswctype(), iswdigit(), iswgraph(), iswlower(), iswprint(), iswpunct(), iswupper(), iswxdigit(), setlocale()