isspace

isspace(s) returns true for each character of string s that is a whitespace and 0 (false) otherwise.

Examples

> isspace('a b cde ')#

	0 1 0 1 0 0 0 1

See also

isa | ischar | isletter