Go to the first, previous, next, last section, table of contents.


isupper

Syntax

#include <ctype.h>

int isupper(int c);

Description

Tells if c is an upper case character or not.

Return Value

Nonzero if c is upper case, else zero.

Portability

ANSI, POSIX


Go to the first, previous, next, last section, table of contents.