...
lib_ascii.h/lib_ascii.c
Prototypes
Code Block | ||
---|---|---|
| ||
ASCII_IS_CTRL(ch);
CPU_BOOLEAN ASCII_IsCtrl (CPU_CHAR ch); |
Arguments
ch
Character to examine.
...
ISO/IEC 9899:TC2, Section 7.4.1.4.(2) states that “iscntrl()
... tests for any control character”. ISO/IEC 9899:TC2, Section 7.4.(3), Note 169, states that in “the seven-bit US ASCII character set, ... the control characters are those whose values lie from 0
(NUL
) through 0x1F
(US
), and the character 0x7F
(DEL
)”.
Example Usage
Code Block | ||
---|---|---|
| ||
CPU_CHAR ch;
CPU_BOOLEAN ctrl;
ch = ASCII_CHAR_DELETE;
ctrl = ASCII_IS_CTRL(ch); |