ISUPPER - check for upper case letter.

(ANSI Standard)

Usage:

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

Where:

int c;
is the character you want to check.
int i;
is 1 if "c" is a upper case letter, and 0 otherwise.

Description:

"isupper" determines whether a character is upper case.

Copyright © 1996, Thinkage Ltd.