|  | ||
| 
 | 
 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 | 
 |