Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
|
#include <ctype.h>
Go to the source code of this file.
Functions | |
int | isdigit (int c) |
Checks if the given character is a numeric character. More... | |
int isdigit | ( | int | ch | ) |
Checks if the given character is a numeric character.
Checks if the given character is a numeric character (0123456789).
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 isdigit.c.
Referenced by atoi(), atol(), atoll(), isalnum(), isxdigit(), strtol(), strtoll(), and strtoul().