Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/cvs/lib/
H A Dregex.c209 #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))
[all …]
/openbsd-src/gnu/lib/libiberty/src/
H A Dregex.c210 # undef ISASCII
212 # define ISASCII(c) 1 macro
214 # define ISASCII(c) isascii(c) macro
218 # define ISBLANK(c) (ISASCII (c) && isblank (c))
223 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
225 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
229 # define ISPRINT(c) (ISASCII (c) && isprint (c))
230 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
231 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
232 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
[all …]
/openbsd-src/usr.bin/telnet/
H A Dtelnet.c539 #define ISASCII(c) (!((c)&0x80)) in mklist() macro
540 if ((c == ' ') || !ISASCII(c)) in mklist()