isblank

From cppreference.com
< c‎ | string‎ | byte
Defined in header <ctype.h>
int isblank( int ch );
(since C99)

Checks if the given character is a blank character in the current C locale. In the default C locale, only space (0x20) and horizontal tab (0x09) are classified as blank.

The behavior is undefined if the value of ch is not representable as unsigned char and is not equal to EOF.

Parameters

ch - character to classify

Return value

Non-zero value if the character is a blank character, zero otherwise.