Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
|
#include <ctype.h>
Go to the source code of this file.
Functions | |
int | isupper (int c) |
Checks if the given character is an uppercase character. More... | |
int isupper | ( | int | ch | ) |
Checks if the given character is an uppercase character.
Checks if the given character is an uppercase character using the default local. isupper returns true only for the uppercase letters (ABCDEFGHIJKLMNOPQRSTUVWXYZ). If isupper returns true, it is guaranteed that
The behavior is undefined if the value of ch is not representable as unsigned char and is not equal to EOF.
ch | The character to classify |
Definition at line 5 of file isupper.c.
Referenced by strtol(), strtoll(), strtoul(), and tolower().