Synopsis
#include <ctype.h>
int isblank(int c);
Description
isblank returns nonzero (true) if and only if the value of the argument
c is either a space character (' ') or the horizontal tab
character ('\t').
Portability
isblank ISO/IEC 9899:1999 (C99).