Lines Matching refs:ISASCII
139 #undef ISASCII
141 # define ISASCII(c) 1 macro
143 # define ISASCII(c) isascii(c) macro
147 # define ISBLANK(c) (ISASCII (c) && isblank (c))
153 #define ISPRINT(c) (ISASCII (c) && isprint (c))
154 #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
155 #define ISALNUM(c) (ISASCII (c) && isalnum (c))
156 #define ISALPHA(c) (ISASCII (c) && isalpha (c))
157 #define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
158 #define ISLOWER(c) (ISASCII (c) && islower (c))
159 #define ISPUNCT(c) (ISASCII (c) && ispunct (c))
160 #define ISSPACE(c) (ISASCII (c) && isspace (c))
161 #define ISUPPER(c) (ISASCII (c) && isupper (c))
162 #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))