Synopsis
int toupper(int c);
Description

toupper converts a lowercase letter to a corresponding uppercase letter. If the argument c is a character for which islower is true, toupper returns the corresponding uppercase letter; otherwise, the argument is returned unchanged.