Declaration:
int isspace(unsigned char c);
Description
The isspace function checks, if parameter c is a space character (0x09 - 0x0D or 0x20).
Returned function
The isspace function will return a non-zero value, if c is a space character, otherwise it will return 0.
|