char_is_whitespace


char_is_whitespace(c)
      

Return true if the character c is whitespace, otherwise return false.

Examples:


char_is_whitespace(\space)
// true
char_is_whitespace(\newline)
// true
      

Also see:

char_is_numeric
char_is_alphabetic
char_is_lower_case


Core Module Index | Contents