Home
last modified time | relevance | path

Searched refs:ISASCII (Results 1 – 1 of 1) sorted by relevance

/toolchain/binutils/binutils-2.25/libiberty/
Dregex.c212 # undef ISASCII
214 # define ISASCII(c) 1 macro
216 # define ISASCII(c) isascii(c) macro
220 # define ISBLANK(c) (ISASCII (c) && isblank (c))
225 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
227 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
231 # define ISPRINT(c) (ISASCII (c) && isprint (c))
232 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
233 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
234 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
[all …]