_toupper(3) - Linux man page
Prolog
This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.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>