Name
isprint -- check if character is printable (V7.0)
Synopsis
int r = isprintable(int c);
Function
Checks if the Unicode character passed in c is printable and returns True if it is, otherwise False. Printable characters are all characters that have a graphical representation, including the space character. Printable characters are the opposite to control characters. isprint() basically does the same as isgraph(), the only difference being that isprint() returns True for the space character as well whereas isgraph() doesn't.

Designer compatibility
Unsupported

Inputs
c
character to test
Results
r
test result

Show TOC