int iscntrl(int c)
Check if the given value is a control character.
Definition: ctype.c:21
int isalpha(int c)
Check if the given value is a letter.
Definition: ctype.c:16
int isdigit(int c)
Check if the given value is a digit.
Definition: ctype.c:11
int isspace(int c)
Check if the given value is a whitespace.
Definition: ctype.c:64
int islower(int c)
Check if the given value is a lower case letter.
Definition: ctype.c:36
int toupper(int c)
Transforms the given value into an upper case letter.
Definition: ctype.c:55
int tolower(int c)
Transforms the given value into a lower case letter.
Definition: ctype.c:46
int isupper(int c)
Check if the given value is an upper case letter.
Definition: ctype.c:41
int isxdigit(int c)
Check if the given value is an hexadecimal digit.
Definition: ctype.c:31
int isalnum(int c)
Check if the given value is either a letter or a digit.
Definition: ctype.c:26