SilverScreen Solid Modeler

isgraph

isgraph

Previous topic Next topic  

isgraph

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

int isgraph( int c )

 

int c;        /* a character */

 

 

 




Synopsis

#include "ctype.h"

 

The isgraph function determines whether c is a printable character other than space (' ').

 

 

Parameters

c is an int, whose value must be representable as a char.

 

 

Return Value

isgraph returns a non-zero value if c is a printable character other than space, and 0 if not.

 

 

 

isspace, iscntrl