Lislower

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

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

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

Parameters

c

(IN) Points to the character to be tested.

Return Values

Returns a nonzero value when the argument is a lowercase character. Otherwise, it returns zero.

Remarks

The Lislower function is a double-byte interface.

See Also