|
||
int isprint( int c )
int c; /* a character */
|
|
|
Synopsis |
#include "ctype.h"
The isprint function determines whether c is a printing character (i.e. a letter, digit, punctuation or space).
|
|
Parameters |
c is an int, whose value must be representable as a char.
|
|
Return Value |
isprint returns a non-zero value if c is a printing character, and 0 if not. |
|
See Also |
|