Searched refs:ISSPACE (Results 1 - 25 of 132) sorted by relevance

123456

/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dskipblanks.c40 if (!ISSPACE(*cp))
H A Dsplit_nameval.c76 for (p = (s) + strlen(s); p > (s) && ISSPACE(p[-1]); p--); \
80 SKIP(buf, np, ISSPACE(*np)); /* find name begin */
83 SKIP(np, ep, !ISSPACE(*ep) && *ep != '='); /* find name end */
84 SKIP(ep, cp, ISSPACE(*cp)); /* skip blanks before '=' */
89 SKIP(cp, vp, ISSPACE(*vp)); /* skip leading blanks */
H A Dallspace.c47 if (!ISASCII(ch) || !ISSPACE(ch))
H A Dtrimblanks.c47 while (curr > string && ISSPACE(curr[-1]))
H A Dline_wrap.c104 while (line_len > 0 && ISSPACE(start_line[line_len - 1]))
107 while (*word && ISSPACE(*word))
119 while (line_len > 0 && ISSPACE(start_line[line_len - 1]))
H A Dreadlline.c92 for (cp = STR(buf) + start; cp < END(buf) && ISSPACE(*cp); cp++)
102 if (next != '#' && !ISSPACE(next))
114 if (LEN(buf) > 0 && ISSPACE(*STR(buf))) {
/macosx-10.9.5/gnudiff-19/diffutils/lib/
H A Dprepargs.c40 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) macro
56 while (ISSPACE ((unsigned char) *o))
67 while (*o && ! ISSPACE ((unsigned char) *o));
H A Dstrtol.c205 # define ISSPACE(Ch) __iswspace_l ((Ch), loc) macro
209 # define ISSPACE(Ch) iswspace (Ch) macro
223 # define ISSPACE(Ch) __isspace_l ((Ch), loc) macro
227 # define ISSPACE(Ch) (IN_CTYPE_DOMAIN (Ch) && isspace (Ch)) macro
314 while (ISSPACE (*s))
H A Dxstrtol.c77 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) macro
134 while (ISSPACE ((unsigned char) *q))
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dprepargs.c42 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) macro
58 while (ISSPACE ((unsigned char) *o))
69 while (*o && ! ISSPACE ((unsigned char) *o));
H A Dstrtol.c199 # define ISSPACE(Ch) __iswspace_l ((Ch), loc) macro
203 # define ISSPACE(Ch) iswspace (Ch) macro
212 # define ISSPACE(Ch) __isspace_l ((Ch), loc) macro
216 # define ISSPACE(Ch) isspace (Ch) macro
293 while (ISSPACE (*s))
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Ddsn_util.c130 || (cp[len] != 0 && !ISSPACE(cp[len])))
152 while (ISSPACE(*cp))
168 while (ISSPACE(*cp))
H A Ddelivered_hdr.c144 while (ISSPACE(*cp))
152 } else if (ISSPACE(STR(info->buf)[0])) {
/macosx-10.9.5/tcsh-65/tcsh/
H A Dvms.termcap.c31 #define ISSPACE(c) ((c) == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n') macro
82 for (++cp ; ISSPACE(*cp) ; cp++);
138 while (ISSPACE(*cp))
170 while (ISSPACE(*cp))
197 while (ISSPACE(*cp))
H A Dgethost.c53 #define ISSPACE(p) (isspace((unsigned char) (p)) && (p) != '\n') macro
125 for (; *ptr && ISSPACE(*ptr); ptr++)
136 for (tok--; tok >= token && *tok && ISSPACE(*tok); tok--)
/macosx-10.9.5/curl-78.94.1/curl/src/
H A Dtool_parsecfg.c133 while(*line && ISSPACE(*line))
149 while(*line && !ISSPACE(*line) && !ISSEP(*line))
161 while(*line && (ISSPACE(*line) || ISSEP(*line)))
180 while(*line && !ISSPACE(*line))
H A Dtool_msgs.c60 while(!ISSPACE(ptr[cut]) && cut) {
/macosx-10.9.5/gnudiff-19/diffutils/src/
H A Dutil.c337 while (ISSPACE (c1) && c1 != '\n') c1 = *t1++;
338 while (ISSPACE (c2) && c2 != '\n') c2 = *t2++;
345 if (ISSPACE (c1))
350 if (! ISSPACE (c1))
360 if (ISSPACE (c2))
365 if (! ISSPACE (c2))
381 && ISSPACE (t1[-2]))
388 && ISSPACE (t2[-2]))
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dstrtoofft.c66 while(ISSPACE(end[0])) {
H A Dcurl_ntlm.c81 while(*header && ISSPACE(*header))
87 while(*header && ISSPACE(*header))
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dstrtod.c59 while (ISSPACE (*p))
H A Dstrtol.c103 } while (ISSPACE(c));
H A Dstrtoul.c74 } while (ISSPACE(c));
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Drclex.l257 while (ISSPACE (*s))
261 if (*send != '\0' && ! ISSPACE (*send))
268 while (ISSPACE (*s))
431 assert (ISSPACE (*t));
432 while (ISSPACE (*t))
/macosx-10.9.5/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen-asm.in218 if (* str && ! ISSPACE (* str))
296 while (ISSPACE (* str))
345 while (ISSPACE (* str))

Completed in 148 milliseconds

123456