Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
|
#include <ctype.h>
Go to the source code of this file.
Functions | |
int | tolower (int c) |
Converts the given character to lowercase. More... | |
int tolower | ( | 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 uppercase letters (ABCDEFGHIJKLMNOPQRSTUVWXYZ) are replaced with respective lowercase 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 tolower.c.
References isupper().
Referenced by towlower().