isupper

Tests for an uppercase character (A to Z) in the ASCII code set.

Library:LibC
Classification:ANSI
Service:Characters and Strings

Syntax

  #include <ctype.h> 
   
  int isupper (
     int   c);
  

Parameters

c

(IN) Specifies the character to be tested.

Return Values

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

See Also