Go to the first, previous, next, last section, table of contents.


isspace

Syntax

#include <ctype.h>

int isspace(int c);

Description

Tells if c is whitespace, that is, carriage return, newline, form feed, tab, vertical tab, or space.

Return Value

Nonzero if c is whitespace, else zero.

Portability

ANSI, POSIX


Go to the first, previous, next, last section, table of contents.