C Programming/ctype.h/isspace

Synopsis

edit
int isspace(int c);

Description

edit

Returns true if c is a whitespace character. In the standard C locale, these are the valid space characters:

  • Spaces
  • Horizontal tabs
  • Vertical tabs
  • Newlines
  • Formfeeds
  • Carriage returns

References

edit