Home
last modified time | relevance | path

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

/ndk/sources/host-tools/sed-4.2.1/
Dbasicdefs.h139 #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))
[all …]
/ndk/sources/host-tools/make-3.81/glob/
Dfnmatch.c62 # define ISASCII(c) 1 macro
64 # define ISASCII(c) isascii(c) macro
68 # 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 …]