MicrOS
isblank.c File Reference
#include "../ctype.h"

Functions

int isblank (int c)
 Check if value is blank. More...
 

Function Documentation

◆ isblank()

int isblank ( int  c)

Check if value is blank.

The isblank function tests for any character that is a standard blank character or is one of a locale-specific set of characters for which isspace is true and that is used to separate words within a line of text. The standard blank characters are the following: space (' '), and horizontal tab (''). In the "C" locale, isblank returns true only for the standard blank characters.

Parameters
cValue to check.
Returns
1 if true, 0 if false