Searched defs:whitespace (Results 1 - 10 of 10) sorted by relevance
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | sortctrl.c | 219 int whitespace = 1; local 221 * beginning of non-whitespace. This tells us 225 if (whitespace) { 227 whitespace = 0; 232 whitespace = 1; 260 /* If we still see whitespace, nothing to do */ 274 /* Is this char either whitespace or a ';' ? */
|
/illumos-gate/usr/src/cmd/sendmail/aux/ |
H A D | rfc2047.c | 95 /* Check if character is linear whitespace */ 111 int whitespace = 0; /* how much whitespace between encodings? */ local 135 /* count linear whitespace while between encodings */ 137 whitespace++; 181 * word has any embedded linear whitespace. 203 * by linear whitespace, then we ignore the whitespace. 204 * We will roll back the buffer the number of whitespace 208 q -= whitespace; [all...] |
/illumos-gate/usr/src/cmd/tcpd/ |
H A D | inetcf.c | 53 static char whitespace[] = " \t\r\n"; variable 106 service = strtok(buf, whitespace); /* service */ 110 strtok((char *) 0, whitespace); /* endpoint */ 111 protocol = strtok((char *) 0, whitespace); 112 (void) strtok((char *) 0, whitespace); /* wait */ 113 if ((user = strtok((char *) 0, whitespace)) == 0) 118 if ((path = strtok((char *) 0, whitespace)) == 0) 131 if ((path = strtok((char *) 0, whitespace)) == 0) 134 if ((arg0 = strtok((char *) 0, whitespace)) == 0) { 145 if ((arg0 = strtok((char *) 0, whitespace)) [all...] |
/illumos-gate/usr/src/lib/libfsmgt/common/ |
H A D | fs_dfstab.c | 52 static const char *whitespace = " \t"; variable 223 for (arglist[argcount] = strtok(temp_str, whitespace); 225 arglist[++argcount] = strtok(NULL, whitespace);
|
/illumos-gate/usr/src/lib/libwrap/ |
H A D | options.c | 76 #define whitespace (whitespace_eq + 1) macro 161 value += strspn(value, whitespace); 165 value += strspn(value, whitespace); 442 if (*(var_value = value + strcspn(value, whitespace)))
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/stdio/ |
H A D | vfscanf.c | 108 static void whitespace(void); 229 /* Input whitespace is not skipped 231 * can return whitespace. 234 whitespace(); 239 * whitespace. 391 whitespace(); 448 whitespace() function 550 whitespace(); 700 whitespace();
|
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/ |
H A D | nfslog_config.c | 72 static const char *whitespace = " \t"; variable 786 tok = strtok(linebuf, whitespace); 797 while (tok = strtok(NULL, whitespace)) { 994 * which must be preceded by a whitespace, unless
|
/illumos-gate/usr/src/lib/pam_modules/authtok_check/ |
H A D | authtok_check.c | 75 * if WHITESPACE != NO, whitespace is seen as 106 boolean_t whitespace; /* is whitespace allowed in a password */ member in struct:pwdefaults 174 p->whitespace = B_TRUE; 242 p->whitespace = 528 /* Check for whitespace first since it influences special counts */ 529 if (whitespace_cnt > 0 && pwdef->whitespace == B_FALSE) { 550 /* nonalpha = special+whitespace+digit */ 785 pwdef.whitespace ? "YES" : "NO");
|
/illumos-gate/usr/src/cmd/svc/svccfg/ |
H A D | svccfg_engine.c | 166 static const char * const whitespace = " \t"; variable 175 arg1end_i = arg1 + strcspn(arg1, whitespace) - line; 242 word_start = strspn(line, whitespace); 275 arg0 = line + strspn(line, whitespace); 276 arg0len = strcspn(arg0, whitespace); 282 arg1 += strspn(arg1, whitespace);
|
/illumos-gate/usr/src/lib/librestart/common/ |
H A D | librestart.c | 2321 const char * const whitespace = " \t"; local 2330 /* skip whitespace */ 2331 cp += strspn(cp, whitespace); 2336 /* skip whitespace after end */ 2337 next = end + strspn(end, whitespace);
|
Completed in 355 milliseconds