/freebsd/contrib/diff/lib/ |
H A D | prepargs.c | 40 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) macro 56 while (ISSPACE ((unsigned char) *o)) in prepend_args() 67 while (*o && ! ISSPACE ((unsigned char) *o)); in prepend_args()
|
/freebsd/contrib/tcsh/ |
H A D | vms.termcap.c | 30 #define ISSPACE(c) ((c) == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n') macro 101 for (++cp ; ISSPACE(*cp) ; cp++); in tgetent() 158 while (ISSPACE(*cp)) in tgetnum() 190 while (ISSPACE(*cp)) in tgetflag() 217 while (ISSPACE(*cp)) in tgetstr()
|
H A D | gethost.c | 50 #define ISSPACE(p) (isspace((unsigned char) (p)) && (p) != '\n') macro 123 for (; *ptr && ISSPACE(*ptr); ptr++) in gettoken() 134 for (tok--; tok >= token && *tok && ISSPACE(*tok); tok--) in gettoken()
|
/freebsd/sbin/ipf/libipf/ |
H A D | load_file.c | 49 for (; ISSPACE(*s); s--) in load_file() 55 for (t = line; ISSPACE(*t); t++) in load_file() 77 while (ISSPACE(*s)) in load_file()
|
H A D | alist_new.c | 35 while (ISSPACE(*host)) in alist_new() 41 while (ISSPACE(*host)) in alist_new()
|
H A D | inet_addr.c | 77 #define ISSPACE(x) isspace((u_char)(x)) macro 143 if (c != '\0' && (!ISASCII(c) || !ISSPACE(c))) in inet_aton()
|
H A D | ipft_hx.c | 121 while (ISSPACE(*s)) in hex_readip() 157 if (ISSPACE(c)) { in readhex()
|
H A D | load_http.c | 176 for (u = t - 1; (u >= buffer) && ISSPACE(*u); u--) in load_http()
|
H A D | parseipfexpr.c | 56 if (ISSPACE(*s)) in parseipfexpr()
|
H A D | save_v2trap.c | 135 while (ISSPACE(*s)) in snmpv2_parse()
|
H A D | save_v1trap.c | 130 while (ISSPACE(*s)) in snmpv1_parse()
|
/freebsd/contrib/nvi/common/ |
H A D | multibyte.h | 51 #define ISSPACE iswspace macro 85 #define ISSPACE isspace macro
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_irc_pxy.c | 97 for (c = *s; !ISSPACE(c) && (i > 0); i--) in ipf_p_irc_complete() 121 for (; !ISSPACE(c) && (i > 0); i--) in ipf_p_irc_complete() 165 if (ISSPACE(c)) in ipf_p_irc_complete()
|
H A D | ip_compat.h | 600 #define ISSPACE(x) isspace((u_char)(x)) macro
|
/freebsd/contrib/sendmail/makemap/ |
H A D | makemap.c | 61 #define ISSPACE(c) (ISASCII(c) && isspace(c)) macro 774 while (aliases && *p != '\0' && ISSPACE(*p))
|
/freebsd/contrib/nvi/vi/ |
H A D | v_increment.c | 89 for (beg = vp->m_start.cno; beg < len && ISSPACE(p[beg]); ++beg); in v_increment()
|
H A D | vi.c | 1057 beg = sp->cno; beg < len && ISSPACE(p[beg]); moved = 1, ++beg); in v_curword()
|
/freebsd/contrib/ntp/ntpdc/ |
H A D | ntpdc.c | 224 #define ISSPACE(c) ((c) == ' ' || (c) == '\t') macro 1305 while (ISSPACE(*cp)) in tokenize() 1311 } while (!ISSPACE(*cp) && !ISEOL(*cp)); in tokenize()
|
/freebsd/share/examples/ipfilter/l4check/ |
H A D | l4check.c | 524 for (line = buf; (c = *line) && ISSPACE(c); line++) in readconfig()
|
/freebsd/contrib/ntp/ntpq/ |
H A D | ntpq.c | 424 #define ISSPACE(c) ((c) == ' ' || (c) == '\t') 1775 while (ISSPACE(*cp)) in tokenize() 1811 } while ((*cp != '\"') && !ISSPACE(*cp) && !ISEOL(*cp)); in tokenize() 428 #define ISSPACE( global() macro
|
/freebsd/contrib/ntp/ntpd/ |
H A D | ntp_config.c | 151 #define ISSPACE(c) ((c) == ' ' || (c) == '\t') 5556 while (!ISEOL(*tokens) && (!ISSPACE(*tokens) || quoted)) in gettokens_netinfo() 5564 while (ISSPACE(*tokens)) in gettokens_netinfo() 155 #define ISSPACE( global() macro
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | evutil.c | 2376 IMPL_CTYPE_FN(ISSPACE) in IMPL_CTYPE_FN()
|
/freebsd/contrib/libevent/ |
H A D | evutil.c | 2376 IMPL_CTYPE_FN(ISSPACE) in IMPL_CTYPE_FN()
|
/freebsd/contrib/diff/ |
H A D | ChangeLog | 163 (CTYPE_DOMAIN, ISPRINT, ISSPACE, TOLOWER, _tolower, errno): Remove; 1288 (ISPRINT, ISSPACE): Remove ifndef wrappers. 2069 differs and -i is in force. Don't assume ISSPACE ('\n') is nonzero. 2153 (CTYPE_DOMAIN, ISDIGIT, ISPRINT, ISSPACE, ISUPPER): New macros that
|