Symbol: WS
libexec/ld.elf_so/paths.c
243
if ((ptr = getword(&bp, ep, WS)) == NULL || ptr == bp)
libexec/ld.elf_so/paths.c
254
if ((ptr = getword(&bp, ep, WS)) == NULL || ptr == bp) {
libexec/ld.elf_so/paths.c
263
for (i = 0; bp++, (ptr = getword(&bp, ep, WS)) != NULL;) {
libexec/ld.elf_so/paths.c
384
(void)getcstr(&b, ep, WS);
libexec/ld.elf_so/paths.c
71
static const char WS[] = " \t\n";
sys/arch/sgimips/stand/undist/undist.c
592
start = next + strspn(next, WS);
sys/arch/sgimips/stand/undist/undist.c
593
end = start + strcspn(start, WS);
tests/lib/libc/stdlib/h_getopt.c
56
optstring = strtok(&line[6], WS);
tests/lib/libc/stdlib/h_getopt.c
68
args[nargs = 0] = strtok(&line[6], WS);
tests/lib/libc/stdlib/h_getopt.c
74
while ((args[++nargs] = strtok(NULL, WS)) != NULL)
tests/lib/libc/stdlib/h_getopt.c
87
result = strtok(&line[8], WS);
tests/lib/libc/stdlib/h_getopt_long.c
153
args[nargs = 0] = strtok(&line[6], WS);
tests/lib/libc/stdlib/h_getopt_long.c
158
while ((args[++nargs] = strtok(NULL, WS)) != NULL)
tests/lib/libc/stdlib/h_getopt_long.c
166
result = strtok(&line[8], WS);
tests/lib/libc/stdlib/h_getopt_long.c
62
optstring = strtok(&line[11], WS);
tests/lib/libc/stdlib/h_getopt_long.c
78
ptr = strtok(&line[10], WS);
tests/lib/libpthread/h_resolv.c
85
for (ptr = strtok(line, WS); ptr; ptr = strtok(NULL, WS))
usr.sbin/mailwrapper/mailwrapper.c
109
cp += strspn(cp, WS);
usr.sbin/mailwrapper/mailwrapper.c
116
if ((from = strsep(&cp, WS)) == NULL)
usr.sbin/mailwrapper/mailwrapper.c
119
cp += strspn(cp, WS);
usr.sbin/mailwrapper/mailwrapper.c
121
if ((to = strsep(&cp, WS)) == NULL)
usr.sbin/mailwrapper/mailwrapper.c
125
for (ap = strsep(&cp, WS); ap != NULL;
usr.sbin/mailwrapper/mailwrapper.c
126
ap = strsep(&cp, WS))
usr.sbin/makemandb/apropos.c
187
for (s = 1, str = strtok(str, WS); str;
usr.sbin/makemandb/apropos.c
188
str = strtok(NULL, WS), s++)