Lines Matching refs:ISASCII
209 #define ISASCII(c) 1 macro
211 #define ISASCII(c) isascii(c) macro
215 #define ISBLANK(c) (ISASCII (c) && isblank (c))
220 #define ISGRAPH(c) (ISASCII (c) && isgraph (c))
222 #define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
225 #define ISPRINT(c) (ISASCII (c) && isprint (c))
226 #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
227 #define ISALNUM(c) (ISASCII (c) && isalnum (c))
228 #define ISALPHA(c) (ISASCII (c) && isalpha (c))
229 #define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
230 #define ISLOWER(c) (ISASCII (c) && islower (c))
231 #define ISPUNCT(c) (ISASCII (c) && ispunct (c))
232 #define ISSPACE(c) (ISASCII (c) && isspace (c))
233 #define ISUPPER(c) (ISASCII (c) && isupper (c))
234 #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))