- Name
-
isgraph -- check if character has a graphical representation (V7.0)
- Synopsis
-
int r = isgraph(int c);
- Function
-
Checks if the Unicode character passed in
c
has a graphical representation and
returns True
if it has, otherwise False
. This function does the same as isprint()
except that it does not return True
for the space character.
- Designer compatibility
-
Unsupported
- Inputs
-
- c
- character to test
- Results
-
- r
- test result
Show TOC