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

/freebsd-12-stable/contrib/ipfilter/lib/
H A Dinet_addr.c79 #define ISASCII(x) isascii((u_char)(x)) macro
123 if (ISASCII(c) && ISDIGIT(c)) {
126 } else if (base == 16 && ISASCII(c) && ISXDIGIT(c)) {
150 if (c != '\0' && (!ISASCII(c) || !ISSPACE(c)))
/freebsd-12-stable/contrib/sendmail/makemap/
H A Dmakemap.c54 #define ISASCII(c) isascii((unsigned char)(c)) macro
55 #define ISSEP(c) (sep == '\0' ? ISASCII(c) && isspace(c) : (c) == sep)
138 !(ISASCII(b[12]) && isalnum(b[12])))
143 while (ISASCII(*++b) && isspace(*b))
145 if (ISASCII(*b) && isdigit(*b))
183 for (p = buf + strlen(buf) - 1; ISASCII(*p) && isspace(*p) && p > buf; p--)
207 if (!ISASCII(*b))
215 for (b = buf + 1; ISASCII(*b) && isspace(*b); b++)
217 if (!(ISASCII(*b) && isalnum(*b)))
223 while ((ISASCII(*
[all...]
/freebsd-12-stable/contrib/gcclibs/libiberty/
H A Dregex.c211 # undef ISASCII
213 # define ISASCII(c) 1
215 # define ISASCII(c) isascii(c)
219 # define ISBLANK(c) (ISASCII (c) && isblank (c))
224 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
226 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
230 # define ISPRINT(c) (ISASCII (c) && isprint (c))
231 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
232 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
233 # define ISALPHA(c) (ISASCII (
210 # undef ISASCII macro
212 # define ISASCII macro
214 # define ISASCII macro
[all...]
/freebsd-12-stable/contrib/binutils/libiberty/
H A Dregex.c211 # undef ISASCII
213 # define ISASCII(c) 1
215 # define ISASCII(c) isascii(c)
219 # define ISBLANK(c) (ISASCII (c) && isblank (c))
224 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
226 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
230 # define ISPRINT(c) (ISASCII (c) && isprint (c))
231 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
232 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
233 # define ISALPHA(c) (ISASCII (
210 # undef ISASCII macro
212 # define ISASCII macro
214 # define ISASCII macro
[all...]
/freebsd-12-stable/crypto/heimdal/appl/telnet/telnet/
H A Dtelnet.c579 #undef ISASCII macro
580 #define ISASCII(c) (!((c)&0x80)) macro
581 if ((c == ' ') || !ISASCII(c))

Completed in 266 milliseconds