NAME
_toupper —
transliterate lowercase characters to uppercase
SYNOPSIS
int _toupper(int c);
DESCRIPTION
The _toupper () macro shall be equivalent
to toupper(3) except that the application shall ensure
that the argument
c is a lowercase
letter.
RETURN VALUE
Upon successful completion, _toupper ()
shall return the uppercase letter corresponding to the argument passed.
ERRORS
No errors are defined.
EXAMPLES
None.
APPLICATION USAGE
Applications should use the toupper(3) function
instead of the obsolescent _toupper () function.
RATIONALE
None.
FUTURE DIRECTIONS
The _toupper () function may be removed in
a future version.
SEE ALSO
XBD V1_chap07(7) , <ctype.h>
CHANGE HISTORY
First released in Issue 1. Derived from Issue 1 of the SVID.
Issue 6
The normative text is updated to avoid use of the term "must" for application requirements.
Issue 7
The _toupper () function is marked
obsolescent.