Searched refs:ISASCII (Results 1 – 2 of 2) sorted by relevance
139 #undef ISASCII141 # define ISASCII(c) 1 macro143 # define ISASCII(c) isascii(c) macro147 # 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))[all …]
62 # define ISASCII(c) 1 macro64 # define ISASCII(c) isascii(c) macro68 # define ISBLANK(c) (ISASCII (c) && isblank (c))73 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))75 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))78 # define ISPRINT(c) (ISASCII (c) && isprint (c))79 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))80 # define ISALNUM(c) (ISASCII (c) && isalnum (c))81 # define ISALPHA(c) (ISASCII (c) && isalpha (c))82 # define ISCNTRL(c) (ISASCII (c) && iscntrl (c))[all …]