Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
|
#include <ctype.h>
Go to the source code of this file.
Functions | |
int | toupper (int c) |
Converts the given character to lowercase. More... | |
int toupper | ( | int | ch | ) |
Converts the given character to lowercase.
Converts the given character to lowercase according to the character conversion rules defined by the default local, i.e. the following lowercase letters (abcdefghijklmnopqrstuvwxyz) are replaced with respective uppercase letters (ABCDEFGHIJKLMNOPQRSTUVWXYZ).
The behavior is undefined if the value of ch is not representable as unsigned char and is not equal to EOF.
ch | character to be converted. |
Definition at line 5 of file toupper.c.
References islower().
Referenced by towupper().