#include <ctype.h>int isblank(int c);
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').
' '
'\t'
isblank ISO/IEC 9899:1999 (C99).
isspace