...
lib_ascii.h/lib_ascii.c
Prototypes
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
ASCII_IS_UPPER(cch); CPU_BOOLEAN ASCII_IsUpper (CPU_CHAR cch); |
Arguments
c
ch
Character to examine.
Returned Value
...
ISO/IEC 9899:TC2, Section 7.4.1.11.(2) states that “isupper()
returns true only for the uppercase letters”.
Example Usage
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
CPU_CHAR cch; CPU_BOOLEAN upper; ch c = ASCII_CHAR_LATIN_UPPER_G; upper = ASCII_IS_UPPER(cch); |