Lisgraph

Tests for any printable character (except a space character) in the local multibyte code set.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

  #include <ctype.h> 
   
  int Lisgraph (
     const char   *c);
  

Parameters

c

(IN) Points to the character to be tested.

Return Values

Returns a nonzero value when the argument is a printable character (except a space character). Otherwise, it returns zero.

Remarks

The Lisgraph function is a double-byte interface. It is similar to Lisprint, except that the space character is not included in the character set that is being tested.

See Also