Searched refs:isspace (Results 1 - 25 of 686) sorted by relevance

1234567891011>>

/macosx-10.9.5/BerkeleyDB-21/db/clib/
H A Disspace.c6 * $Id: isspace.c,v 1.5 2008/01/08 20:58:08 bostic Exp $
14 * isspace --
17 * PUBLIC: int isspace __P((int));
21 isspace(c) function
/macosx-10.9.5/Heimdal-323.92.1/appl/popper/
H A Dpop_parse.c25 while (isspace((unsigned char)*mp))mp++;
40 while (!isspace((unsigned char)*mp) && *mp) mp++;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dfmtident.c45 while (isspace(*s))
54 else if (s[0] == '$' && s[1] == 'I' && s[2] == 'd' && s[3] == ':' && isspace(s[4]))
68 while (t > s && isspace(t[-1]))
H A Dstropt.c77 while (isspace(*s) || *s == ',') s++;
94 if (!*t || isspace(*v) || *v == ',' || *v == '=')
114 while (*v && !isspace(*v) && *v != '=' && *v != ',')
149 else if (c == ',' || isspace(c))
H A Dstrelapsed.c51 while (isspace(*s) || *s == '_')
58 if (*s == '0' && (!(c = *(s + 1)) || isspace(c) || c == '_'))
80 while (isspace(c) || c == '_')
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/librewrite/
H A Dparse.c38 for ( p = buf; isspace( (unsigned char) p[ 0 ] ); p++ );
57 for ( p++; isspace( (unsigned char) p[ 0 ] ); p++ );
69 } else if ( isspace( (unsigned char) p[ 0 ] ) && !in_quoted_field ) {
78 for ( p++; isspace( (unsigned char) p[ 0 ] ); p++ );
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dcharclass.h25 { "space", isspace },
/macosx-10.9.5/ruby-104/ruby/missing/
H A Dstrtol.c12 while (isspace(*p)) {
/macosx-10.9.5/sudo-72/src/emul/
H A Dcharclass.h33 { "space", isspace },
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/win/
H A Dcattcl.c50 if (isspace (*p)) {
52 while (isspace (*p)) {
70 while (isspace (*p)) {
84 while (*p != '\0' && !isspace(*p)) {
/macosx-10.9.5/uucp-11/uucp/lib/
H A Dspool.c27 if (*z == '/' || ! isprint (BUCHAR (*z)) || isspace (BUCHAR (*z)))
/macosx-10.9.5/ntp-88/libntp/
H A Dmstolfp.c34 while (isspace((int)*cp))
97 if (*cp != '\0' && !isspace((int)*cp))
H A Datolfp.c54 while (isspace((int)*cp))
74 if (*cp != '\0' && !isspace((int)*cp)) {
89 if (*cp != '\0' && !isspace((int)*cp))
/macosx-10.9.5/uucp-11/uucp/uuconf/
H A Dsplit.c57 while (isspace (BUCHAR (*zline)))
90 while (*zline != '\0' && ! isspace (BUCHAR (*zline)))
/macosx-10.9.5/tcl-102/tcl/tcl/compat/
H A Dstrtol.c60 while (isspace(UCHAR(*p))) {
/macosx-10.9.5/tcl-102/tcl84/tcl/compat/
H A Dstrtol.c65 while (isspace(UCHAR(*p))) {
/macosx-10.9.5/OpenPAM-20/openpam/lib/
H A Dopenpam_readline.c87 while (len > 0 && isspace((int)line[len - 1]))
100 while (len > 0 && isspace((int)line[len - 1]))
115 if (isspace(ch)) {
/macosx-10.9.5/rsync-42/rsync/popt/
H A Dpoptconfig.c31 if (*line == '\0' || !isspace(*line)) return;
33 while (*line != '\0' && isspace(*line)) line++;
35 while (*line == '\0' || !isspace(*line)) line++;
38 while (*line != '\0' && isspace(*line)) line++;
41 while (*line == '\0' || !isspace(*line)) line++;
44 while (*line != '\0' && isspace(*line)) line++;
137 while (*dst && isspace(*dst)) dst++;
/macosx-10.9.5/libpcap-42/libpcap/
H A Detherent.c83 } while (isspace(c) && c != '\n');
140 if (!isspace(c)) {
162 } while (!isspace(c) && c != EOF && --d > 0);
/macosx-10.9.5/remote_cmds-41.90.1/stdhosts.tproj/
H A Dstdhosts.c92 isascii(ch) && isspace(ch))
161 while (!isspace(*p)) { p++; }; /* find first "space" */
162 while (isspace(*p)) { *p = '\0'; p++; }; /* replace space with <NUL> */
/macosx-10.9.5/CrackLib-37765/cracklib27/cracklib/
H A Dstringlib.c39 while ((--ptr >= string) && isspace(*ptr));
/macosx-10.9.5/bash-92/bash-3.2/include/
H A Dchartypes.h44 #if !defined (isspace) && !defined (HAVE_ISSPACE)
45 # define isspace(c) ((c) == ' ' || (c) == '\t' || (c) == '\n' || (c) == '\f') macro
61 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c))
77 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
/macosx-10.9.5/cctools-845/libstuff/
H A Dsymbol_list.c88 while(*line != '\0' && isspace(*line))
112 while(*line != '\0' && isspace(*line))
120 while(j > 0 && isspace(line[j])){
123 if(j > 0 && j + 1 < len && isspace(line[j+1]))
/macosx-10.9.5/cups-372.4/cups/cgi-bin/
H A Dsearch.c98 while (isspace(*qptr & 255))
139 for (qend = qptr + 1; *qend && !isspace(*qend); qend ++);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/vec/
H A Dvecargs.c67 while (isspace(*s)) s++;

Completed in 327 milliseconds

1234567891011>>