_toupper - transliterate lower-case characters to upper-case
#include <ctype.h>
int _toupper(int c);
The _toupper() macro is equivalent to toupper() except that the argument c must be a lower-case letter.
On successful completion, _toupper() returns the upper-case letter corresponding to the argument passed.
No errors are defined.
None.
None.
None.
islower()
, toupper(), <ctype.h>, the Locale specification.
Derived from Issue 1 of the SVID.