C Programming/ctype.h/toupper

Synopsis

edit
int toupper(int c);

Description

edit

This function transliterates a lowercase character to uppercase and returns it. If c is not a lowercase letter, c is returned unchanged.

References

edit