toupper

Converts a character to upper case

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

Arguments

c Input character

Return Value

The upper case character corresponding to the input character c is returned.

Explanation

The input character c is converted to upper case.