fn() isspace
Check if character is a white-space character

Defined in <cctype>
Signature bool isspace(c);

Parameters

c The character to be checked. Type: int

Return Values

bool true (non-zero) if c is a printable character.

Detailed Description

Remarks

This is non-SeqAn, plain c and listed for completeness.

NOTE: White-Space contains more than space and tab characters, if you want to check for that, use Function.isblank instead!

See Also