isgraph Function (Macro)

ctype.h

short isgraph (short c);

Checks whether a character is a graph character.

isgraph returns nonzero if c is printing character, like isprint, except that a space character is excluded; otherwise it returns zero. It is an inline function which is implemented using GNU C smart macros, which expands to a relatively small code.