69 return c ==
' ' || (c >=
'\t' && c <=
'\r');
95 return c >=
'A' && c <=
'Z';
107 return c >=
'a' && c <=
'z';
132 return c >=
'0' && c <=
'9';
157 return c ==
' ' || c ==
'\t';
170 return isdigit(c) || (c >=
'A' && c <= 'F') || (c >=
'a' && c <=
'f');
182 return c >=
' ' && c <=
'~';
231 return c - 0x20 * (c >=
'a' && c <=
'z');
243 return c + 0x20 * (c >=
'A' && c <=
'Z');
static int isgraph(int c)
Check for any printable character except space.
Definition: ctype.h:192
static int ispunct(int c)
Check for any printable character which is not a space or an alphanumeric character.
Definition: ctype.h:205
static int tolower(int c)
Convert uppercase letter to lowercase.
Definition: ctype.h:241
static int isspace(int c)
Check for white-space characters. These are: space, form-feed ('\f'), newline ('\n'), carriage return ('\r'), horizontal tab ('\t'), and vertical tab ('\v').
Definition: ctype.h:67
static int isxdigit(int c)
Check for hexadecimal digits, that is, one of 0 1 2 3 4 5 6 7 8 9 a b c d e f A B C D E F...
Definition: ctype.h:168
static int isprint(int c)
Check for any printable character including space.
Definition: ctype.h:180
static int toupper(int c)
Convert lowercase letter to uppercase.
Definition: ctype.h:229
static int iscntrl(int c)
Check for a control character.
Definition: ctype.h:217
static int isalnum(int c)
Check for an alphanumeric character; it is equivalent to (isalpha(c) || isdigit(c)).
Definition: ctype.h:143
static int isalpha(int c)
Check for an alphabetic character; it is equivalent to (isupper(c) || islower(c)) ...
Definition: ctype.h:118
static int isupper(int c)
Check for an uppercase letter.
Definition: ctype.h:93
static int isblank(int c)
Check for a blank character; that is, a space or a tab.
Definition: ctype.h:155
static int isascii(int c)
Check whether c is a 7-bit unsigned char value that fits into the ASCII character set...
Definition: ctype.h:81
static int islower(int c)
Check for an lowercase letter.
Definition: ctype.h:105
static int isdigit(int c)
Check for a digit (0 through 9)
Definition: ctype.h:130