Lisupper

Tests for an uppercase character in the local multibyte code set.

Library:LibC
Classification:ANSI
Service:Characters and Strings

Syntax

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

Parameters

c

(IN) Points to the character to be tested.

Return Values

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

Remarks

The Lisupper function is a double-byte interface.

See Also