_toupper(3) - Linux man page
Name
_toupper - transliterate lowercase characters to uppercaseSynopsis
#include <ctype.h>
int _toupper(int c);
Description
The _toupper() macro shall be equivalent to toupper() 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.
The following sections are informative.
Examples
None.
Application Usage
None.
Rationale
None.
Future Directions
None.
See Also
islower() , toupper() , the Base Definitions volume of IEEE Std 1003.1-2001, Chapter 7, Locale, <ctype.h>
