int iscntrl(int c)
Check if the given character is a control character.
Definition ctype.c:25
int isalpha(int c)
Check if the given character is alphabetic.
Definition ctype.c:9
int isdigit(int c)
Check if the given character is a digit.
Definition ctype.c:29
int isgraph(int c)
Check if the given character is printable and not a space.
Definition ctype.c:33
int isspace(int c)
Check if the given character is a whitespace character.
Definition ctype.c:50
int islower(int c)
Check if the given character is a lowercase alphabetic character.
Definition ctype.c:37
int isprint(int c)
Check if the given character is a printable character (including spaces).
Definition ctype.c:42
int toupper(int c)
Convert the given character to uppercase.
Definition ctype.c:72
int tolower(int c)
Convert the given character to lowercase.
Definition ctype.c:66
int isupper(int c)
Check if the given character is an uppercase alphabetic character.
Definition ctype.c:54
int isxdigit(int c)
Check if the given character is a hexadecimal digit.
Definition ctype.c:58
int isalnum(int c)
Check if the given character is alphanumeric.
Definition ctype.c:21
int isascii(int c)
Check if the given character is a valid ASCII character.
Definition ctype.c:13
int toascii(int c)
Convert the given character to its ASCII equivalent.
Definition ctype.c:62
int isblank(int c)
Check if the given character is a blank space.
Definition ctype.c:17
int ispunct(int c)
Check if the given character is a punctuation character.
Definition ctype.c:46