Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
|
#include <ctype.h>
Go to the source code of this file.
Functions | |
int | isascii (int c) |
Checks if a given character is a 7-bit US-ASCII character. More... | |
int isascii | ( | int | ch | ) |
Checks if a given character is a 7-bit US-ASCII character.
Checks if a given character 7-bit unsigned char value that fits into the ASCII character set. which is any character between 0 and 0x7f inclusive.
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 |