Lisspace

Tests for a whitespace character in the local multibyte code set.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

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

Parameters

c

(IN) Points to the character to be tested.

Return Values

Returns a nonzero value when the argument is one of the indicated whitespace characters. Otherwise, it returns zero.

Remarks

The Lisspace function is a double-byte interface. It tests for the following whitespace characters:

` ’

Space

\f

Form feed

\n

New line or line feed

\r

Carriage return

\t

Horizontal tab

\v

Vertical tab

See Also