SilverScreen Solid Modeler

ispunct

ispunct

Previous topic Next topic  

ispunct

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

int ispunct( int c )

 

int c;       /* a character */

 

 

 




Synopsis

#include "ctype.h"

 

The ispunct function determines whether c is a punctuation character, (i.e. a printing character that is not a letter, digit or space).

 

 

Parameters

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

 

 

Return Value

ispunct returns a non-zero value if c is a punctuation character, and 0 if not.

 

See Also

isalpha, isalnum, isdigit, isspace