...
lib_ascii.h/lib_ascii.c
Prototypes
Code Block | ||
---|---|---|
| ||
ASCII_IS_LOWER(ch);
CPU_BOOLEAN ASCII_IsLower (CPU_CHAR ch); |
Arguments
ch
Character to examine.
...
ISO/IEC 9899:TC2, Section 7.4.1.7.(2) states that “islower()
returns true only for the lowercase letters”.
Example Usage
Code Block | ||
---|---|---|
| ||
CPU_CHAR ch;
CPU_BOOLEAN lower;
ch = ASCII_CHAR_LATIN_LOWER_G;
lower = ASCII_IS_LOWER(ch); |