ISPRINT - check for printing character.

(ANSI Standard)

Usage:

#include <ctype.h>
i = isprint(c);

Where:

int c;
is the character you want to check.
int i;
is 1 if "c" is a printable character, and 0 otherwise.

Description:

"isprint" determines whether a character is printable. A space is considered a printable character. For contrast, see "expl c lib isgraph".

Copyright © 1996, Thinkage Ltd.