8 #define _CTYPE_A 0x00000100L 9 #define _CTYPE_C 0x00000200L 10 #define _CTYPE_D 0x00000400L 11 #define _CTYPE_G 0x00000800L 12 #define _CTYPE_L 0x00001000L 13 #define _CTYPE_P 0x00002000L 14 #define _CTYPE_S 0x00004000L 15 #define _CTYPE_U 0x00008000L 16 #define _CTYPE_X 0x00010000L 17 #define _CTYPE_B 0x00020000L 18 #define _CTYPE_R 0x00040000L 19 #define _CTYPE_I 0x00080000L 20 #define _CTYPE_T 0x00100000L 21 #define _CTYPE_Q 0x00200000L 22 #define _CTYPE_SW0 0x20000000L 23 #define _CTYPE_SW1 0x40000000L 24 #define _CTYPE_SW2 0x80000000L 25 #define _CTYPE_SW3 0xc0000000L 26 #define _CTYPE_SWM 0xe0000000L int tolower(int ch)
Converts the given character to lowercase.
int isupper(int ch)
Checks if the given character is an uppercase character.
int isgraph(int ch)
Checks if the given character has a graphical representation.
int isascii(int ch)
Checks if a given character is a 7-bit US-ASCII character.
int isalpha(int ch)
Checks if the given character is an alphabetic character.
int toupper(int ch)
Converts the given character to lowercase.
int ispunct(int ch)
Checks if the given character is a punctuation character.
int iscntrl(int ch)
Checks if the given character is a control character.
int isxdigit(int ch)
Checks if the given character is a hexadecimal numeric character.
int isalnum(int ch)
Checks if the given character is an alphanumeric character.
int isprint(int ch)
Checks if the given character can be printed.
int isspace(int ch)
Checks if the given character is a whitespace character.
int toascii(int ch)
Converts the given character to ASCII.
int islower(int ch)
Checks if the given character is classified as a lowercase character.
int isdigit(int ch)
Checks if the given character is a numeric character.
int isblank(int ch)
Checks if the given character is a blank character.