isupper

Tests for upper case character

#include <ctype.h>
long isupper (
        long c
)

Arguments

c Input character

Return Value

A non-zero value is returned if the input character c is an upper case character, otherwise 0 is returned.

Explanation

The character c is tested as to whether it is an upper case character.

See Also

isalnum(), isalpha(), isascii(), iscntrl(), isdigit(), isgraph(), islower(), isprint(), ispunct(), isspace(), isxdigit()