Symbol: strsep
bin/dd/args.c
298
name = strsep(&arg, ",");
bin/md5/md5.c
466
while ((cp = strsep(&optarg, " \t,")) != NULL) {
bin/ps/keyword.c
227
while ((cp = strsep(&p, FMTSEP)) != NULL && *cp == '\0')
bin/stty/gfmt.c
74
p = strsep(&s, ":\0");
games/number/number.c
203
part2 = strsep(&part3, "eE"); /* part3 is the exponent */
games/number/number.c
205
(void)strsep(&part4, "."); /* no decimal allowed in the exponent */
games/number/number.c
208
part1 = strsep(&part2, "."); /* we can have one in the mantissa */
include/string.h
135
char *strsep(char **, const char *);
lib/libc/asr/asr.c
585
ntok < ntokens && (*tp = strsep(&cp, " \t")) != NULL; )
lib/libc/gen/exec.c
194
while ((p = strsep(&cur, ":"))) {
lib/libc/gen/getgrent.c
391
p_gr->gr_name = strsep(&bp, ":\n");
lib/libc/gen/getgrent.c
394
p_gr->gr_passwd = strsep(&bp, ":\n");
lib/libc/gen/getgrent.c
395
if (!(cp = strsep(&bp, ":\n")))
lib/libc/gen/getgrent.c
407
bp = strsep(&bp, ":\n") + 1;
lib/libc/gen/getgrent.c
428
strsep(&line, ":\n") + 1))
lib/libc/gen/getgrent.c
439
p_gr->gr_name = strsep(&bp, ":\n");
lib/libc/gen/getgrent.c
446
p_gr->gr_passwd = strsep(&bp, ":\n");
lib/libc/gen/getgrent.c
447
if (!(cp = strsep(&bp, ":\n")))
lib/libc/gen/getpwent.c
197
pw->pw_name = strsep(&bp, ":\n");
lib/libc/gen/getpwent.c
198
pw->pw_passwd = strsep(&bp, ":\n");
lib/libc/gen/getpwent.c
199
if (!(cp = strsep(&bp, ":\n")))
lib/libc/gen/getpwent.c
205
if (!(cp = strsep(&bp, ":\n")))
lib/libc/gen/getpwent.c
215
pw->pw_class = strsep(&bp, ":\n");
lib/libc/gen/getpwent.c
216
if (!(cp = strsep(&bp, ":\n")))
lib/libc/gen/getpwent.c
222
if (!(cp = strsep(&bp, ":\n")))
lib/libc/gen/getpwent.c
234
pw->pw_gecos = strsep(&bp, ":\n");
lib/libc/gen/getpwent.c
235
pw->pw_dir = strsep(&bp, ":\n");
lib/libc/gen/getpwent.c
236
pw->pw_shell = strsep(&bp, ":\n");
lib/libc/gen/strtofflags.c
120
while ((p = strsep(&string, "\t ,")) != NULL) {
lib/libc/hidden/string.h
71
PROTO_NORMAL(strsep);
lib/libc/locale/setlocale.c
103
strsep(&nextname, "/"), newgl) == -1)
lib/libc/net/rcmdsh.c
165
while ((p = strsep(&rshprog, " ")) != NULL) {
lib/libc/string/strsep.c
71
DEF_WEAK(strsep);
lib/libfuse/fuse_opt.c
309
while ((ap = strsep(&optlist, ",")) != NULL &&
lib/libssl/ssl_ciphers.c
224
while ((p = strsep(&q, ":")) != NULL) {
lib/libssl/t1_lib.c
616
while ((p = strsep(&q, ":")) != NULL) {
lib/libtls/tls_config.c
241
while ((p = strsep(&q, ",:")) != NULL) {
lib/libtls/tls_config.c
323
while ((p = strsep(&q, ",")) != NULL) {
lib/libtls/tls_config.c
594
while ((p = strsep(&q, ",:")) != NULL) {
lib/libutil/passwd.c
387
if (!(p = strsep(&bp, ":")) || *p == '\0') /* login */
lib/libutil/passwd.c
392
if (!(pw->pw_passwd = strsep(&bp, ":"))) /* passwd */
lib/libutil/passwd.c
395
if (!(p = strsep(&bp, ":"))) /* uid */
lib/libutil/passwd.c
411
if (!(p = strsep(&bp, ":"))) /* gid */
lib/libutil/passwd.c
423
pw->pw_class = strsep(&bp, ":"); /* class */
lib/libutil/passwd.c
424
if (!(p = strsep(&bp, ":"))) /* change */
lib/libutil/passwd.c
429
if (!(p = strsep(&bp, ":"))) /* expire */
lib/libutil/passwd.c
434
pw->pw_gecos = strsep(&bp, ":"); /* gecos */
lib/libutil/passwd.c
435
pw->pw_dir = strsep(&bp, ":"); /* directory */
lib/libutil/passwd.c
436
if (!(pw->pw_shell = strsep(&bp, ":"))) /* shell */
lib/libutil/passwd.c
452
if ((p = strsep(&bp, ":"))) { /* too many */
libexec/ftpd/ftpd.c
1908
while ((p = strsep(&next, "\n\r"))) {
libexec/ftpd/ftpd.c
1935
while ((p = strsep(&next, "\n\r"))) {
libexec/ld.so/ldconfig/shlib.c
118
while ((cp = strsep(&path, ":")) != NULL)
libexec/ld.so/ldconfig/sod.c
100
for (tuplet = 0; (tok = strsep(&cp, ".")) != NULL; tuplet++) {
libexec/spamd-setup/spamd-setup.c
331
(*ap = strsep(&file, " \t")) != NULL;) {
libexec/spamd-setup/spamd-setup.c
871
name = strsep(&buf, ": \t"); /* skip "all" at start */
libexec/spamd-setup/spamd-setup.c
874
while ((name = strsep(&buf, ": \t")) != NULL) {
libexec/spamd/grey.c
903
ap < &argv[4] && (*ap = strsep(&buf, ":")) != NULL;) {
libexec/spamd/spamd.c
262
while ((tmp = strsep(&cp, ";")) != NULL) {
libexec/spamd/spamd.c
287
tmp = strsep(&cp, ";");
libexec/spamd/spamd.c
302
tmp = strsep(&cp, ";");
libexec/spamd/spamd.c
643
s = strsep(&f, ":");
libexec/spamd/spamd.c
648
s = strsep(&f, " \t");
libexec/spamd/spamd.c
652
s = strsep(&p, " \t\n\r");
libexec/spamd/spamd.c
655
s = strsep(&p, " \t\n\r");
libexec/spamd/spamd.c
691
s = strsep(&f, " \t");
libexec/spamd/spamd.c
695
s = strsep(&p, " \t\n\r");
libexec/spamd/spamd.c
698
s = strsep(&p, " \t\n\r");
regress/usr.bin/ssh/unittests/authopt/tests.c
72
for (n = 0; (cp2 = strsep(&cp, ",")) != NULL;) {
regress/usr.sbin/bgpd/unittests/rde_trie_test.c
127
while ((s = strsep(&line, " \t\n"))) {
regress/usr.sbin/bgpd/unittests/rde_trie_test.c
185
while ((s = strsep(&line, " \t\n"))) {
sbin/dhcpleased/parse.y
230
for (i = 0; (p = strsep(&hex, ":")) != NULL && i <
sbin/fdisk/cmd.c
512
part = strsep(&flag, WHITESPACE);
sbin/fdisk/cmd.c
97
from = strsep(&to, WHITESPACE);
sbin/fdisk/user.c
198
cmd = strsep(arg, WHITESPACE);
sbin/fsck/fsck.c
435
while ((ptr = strsep(&fslist, ",")) != NULL)
sbin/fsck/fsck.c
465
for (s = opts; (p = strsep(&s, ",")) != NULL;) {
sbin/fsck/fsck.c
504
for (opt = optbuf; !found && opt != NULL; strsep(&opt, ","))
sbin/fsdb/fsdb.c
500
while ((val = strsep(&p, "/")) != NULL && *val == '\0')
sbin/fsdb/fsdbutil.c
60
while ((val = strsep(&p, " \t\n")) != NULL && *val == '\0')
sbin/ifconfig/brconfig.c
617
while ((s = strsep(&str, ",")) != NULL) {
sbin/ifconfig/brconfig.c
622
t = strsep(&s, "-");
sbin/isakmpd/conf.c
768
while ((field = strsep(&p, ",")) != NULL) {
sbin/isakmpd/util.c
376
while ((token = strsep(&bstart, ".")) != NULL) {
sbin/mount/getmntopts.c
75
opt = strsep(optionp, ",");
sbin/mount/mount.c
311
for (opt = optbuf; !found && opt != NULL; strsep(&opt, ","))
sbin/mount/mount.c
715
for (s = options; argc <= argcmax && (p = strsep(&s, ",")) != NULL;)
sbin/mountd/mountd.c
2186
names = strsep(&namelist, " \t\n");
sbin/mountd/mountd.c
2187
name = strsep(&names, ":");
sbin/mountd/mountd.c
2230
name = strsep(&names, ":");
sbin/mountd/mountd.c
2264
host = strsep(&cp, " \t\n");
sbin/mountd/mountd.c
2265
dirp = strsep(&cp, " \t\n");
sbin/pfctl/pfctl.c
768
while ((token = strsep(&s, " \t")) != NULL)
sbin/restore/dirs.c
296
while ((name = strsep(&path, "/")) != NULL && *name != '\0') {
sbin/sysctl/sysctl.c
1212
while (*newvalp && (cp = strsep((char **)newvalp, ", \t")) && *cp) {
sbin/sysctl/sysctl.c
1459
if ((name = strsep(bufpp, ".")) == NULL) {
sbin/sysctl/sysctl.c
1972
if ((name = strsep(bufpp, ".")) == NULL) {
sbin/sysctl/sysctl.c
1987
for (i = 1; (ptr = strsep(&buf, ",")) != NULL; i++) {
sbin/sysctl/sysctl.c
2010
if ((name = strsep(bufpp, ".")) == NULL) {
sbin/sysctl/sysctl.c
2018
for (i = 1; (ptr = strsep(&buf, ",")) != NULL; i++) {
sbin/sysctl/sysctl.c
2584
if ((devname = strsep(bufpp, ".")) == NULL) {
sbin/sysctl/sysctl.c
2618
if ((typename = strsep(bufpp, ".")) == NULL) {
sbin/sysctl/sysctl.c
2954
if (namelist->list == 0 || (name = strsep(bufp, ".")) == NULL) {
sbin/unwind/frontend.c
1484
while ((line = strsep(&p, "\n")) != NULL) {
sbin/unwind/libunbound/config.h
1503
char *strsep(char **stringp, const char *delim);
sbin/unwind/libunbound/util/config_file.c
2402
while((p=strsep(&s, " \t\n")) != NULL) {
sbin/unwind/libunbound/util/configparser.y
2556
while((p=strsep(&s, " \t\n")) != NULL) {
sys/arch/amd64/stand/rdboot/disk.c
90
while ((devname = strsep(&ptr, ",")) != NULL) {
sys/arch/octeon/stand/rdboot/disk.c
82
while ((devname = strsep(&ptr, ",")) != NULL) {
sys/arch/powerpc64/stand/rdboot/disk.c
90
while ((devname = strsep(&ptr, ",")) != NULL) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
2599
while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
2600
pciaddname = strsep(&pciaddname_tmp, ",");
sys/dev/pci/drm/amd/amdgpu/amdgpu_device.c
4362
while ((timeout_setting = strsep(&input, ",")) &&
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
134
sub_str = strsep(&wr_buf_ptr, delimiter);
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
1037
while ((sub_str = strsep(&tmp, delimiter)) != NULL) {
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
1397
while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2430
while ((param = strsep(&tmp, delimiter))) {
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
3908
while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
795
while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
sys/dev/pci/drm/i915/i915_mitigations.c
45
for (sep = str; (tok = strsep(&sep, ","));) {
sys/dev/pci/drm/i915/i915_pci.c
908
for (p = s, ret = false; (tok = strsep(&p, ",")) != NULL; ) {
sys/dev/pci/drm/i915/selftests/i915_selftest.c
327
for (sep = filter; (tok = strsep(&sep, ","));) {
usr.bin/chpass/edit.c
115
p = strsep(&bp, ",");
usr.bin/chpass/edit.c
117
p = strsep(&bp, ",");
usr.bin/chpass/edit.c
119
p = strsep(&bp, ",");
usr.bin/chpass/edit.c
121
p = strsep(&bp, ",");
usr.bin/cu/cu.c
518
for (ucom = strsep(&names, ","); ucom; ucom = strsep(&names, ",")) {
usr.bin/cut/cut.c
191
while ((p = strsep(&list, ", \t"))) {
usr.bin/cvs/cvs.c
154
cp = strsep(&lp, " \t\b\f\n\r\t\v");
usr.bin/cvs/rcs.c
2443
while ((l_line = strsep(&q, "\n")) != NULL &&
usr.bin/cvs/util.c
224
cp = strsep(&lp, " \t");
usr.bin/cvs/util.c
766
while ((p = strsep(&cp, sep)) != NULL) {
usr.bin/dig/dighost.c
217
res = strsep(stringp, delim);
usr.bin/doas/doas.c
290
char *cp = strsep(&p, ":");
usr.bin/finger/util.c
104
if (!(p = strsep(&bp, ",")))
usr.bin/finger/util.c
109
if ((p = strsep(&bp, ",")) && *p) {
usr.bin/finger/util.c
113
if ((p = strsep(&bp, ",")) && *p) {
usr.bin/finger/util.c
117
if ((p = strsep(&bp, ",")) && *p) {
usr.bin/ftp/cookie.c
90
while ((param = strsep(&line, "\t")) != NULL) {
usr.bin/ftp/list.c
31
while ((tok = strsep(line, " \t")) != NULL) {
usr.bin/ftp/list.c
57
while ((tok = strsep(line, " \t")) != NULL) {
usr.bin/getcap/getcap.c
82
for (n = 0; (pathvec[n] = strsep(&optarg, ":"));) {
usr.bin/join/join.c
511
while ((token = strsep(&option, ", \t")) != NULL) {
usr.bin/kstat/kstat.c
234
char *s = strsep(&arg, ":");
usr.bin/m4/gnum4.c
107
(path = strsep(&sweep, ":")) != NULL;)
usr.bin/mandoc/main.c
343
strsep(&oarg, ","), 0) == -1)
usr.bin/mandoc/mansearch.c
812
while (NULL != (key = strsep(&argv[*argi], ","))) {
usr.bin/mg/cscope.c
580
while ((dir = strsep(&path, ":")) != NULL) {
usr.bin/mg/grep.c
276
if ((fname = strsep(&lp, ":")) == NULL || *fname == '\0')
usr.bin/mg/grep.c
278
if ((ln = strsep(&lp, ":")) == NULL || *ln == '\0')
usr.bin/pkill/pkill.c
552
while ((sp = strsep(&src, ",")) != NULL) {
usr.bin/rcs/rcsprog.c
95
cp = strsep(&lp, " \t\b\f\n\r\t\v");
usr.bin/rcs/rcsutil.c
216
for (next = suffixes; (ext = strsep(&next, "/")) != NULL;) {
usr.bin/rcs/rcsutil.c
593
while ((p = strsep(&cp, sep)) != NULL) {
usr.bin/rcs/rcsutil.c
626
for (next = suffixes; (ext = strsep(&next, "/")) != NULL;) {
usr.bin/rdist/common.c
827
for (found = 0; !found && (file = strsep(&path, ":")) != NULL; ) {
usr.bin/rs/rs.c
170
ep->w = mbsavis(&ep->s, strsep(&p, delim));
usr.bin/rsync/fargs.c
72
while ((arg = strsep(&ap, " \t")) != NULL) {
usr.bin/ssh/addrmatch.c
117
while ((cp = strsep(&list, ",")) != NULL) {
usr.bin/ssh/addrmatch.c
57
while ((cp = strsep(&list, ",")) != NULL) {
usr.bin/ssh/auth2-methods.c
103
while ((method = strsep(&methods, ",")) != NULL) {
usr.bin/ssh/auth2-pubkeyfile.c
154
if ((entry = strsep(&list, ",")) == NULL || *entry == '\0')
usr.bin/ssh/channels.c
1149
while ((cp = strsep(&open, "\r\n")) != NULL) {
usr.bin/ssh/cipher.c
208
for ((p = strsep(&cp, CIPHER_SEP)); p && *p != '\0';
usr.bin/ssh/cipher.c
209
(p = strsep(&cp, CIPHER_SEP))) {
usr.bin/ssh/dh.c
102
strsize = strsep(&cp, " "); /* size */
usr.bin/ssh/dh.c
111
gen = strsep(&cp, " "); /* gen */
usr.bin/ssh/dh.c
114
prime = strsep(&cp, " "); /* prime */
usr.bin/ssh/dh.c
75
arg = strsep(&cp, " "); /* type */
usr.bin/ssh/dh.c
84
arg = strsep(&cp, " "); /* tests */
usr.bin/ssh/dh.c
94
arg = strsep(&cp, " "); /* tries */
usr.bin/ssh/kex-names.c
162
for ((p = strsep(&cp, ",")); p && *p != '\0';
usr.bin/ssh/kex-names.c
163
(p = strsep(&cp, ","))) {
usr.bin/ssh/kex-names.c
210
for ((p = strsep(&cp, ",")); p && *p != '\0'; (p = strsep(&cp, ","))) {
usr.bin/ssh/kex-names.c
289
while ((cp = strsep(&patterns, ",")) != NULL) {
usr.bin/ssh/kex.c
273
for ((alg = strsep(&algs, ",")); alg != NULL && *alg != '\0';
usr.bin/ssh/kex.c
274
(alg = strsep(&algs, ","))) {
usr.bin/ssh/mac.c
240
for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0';
usr.bin/ssh/mac.c
241
(p = strsep(&cp, MAC_SEP))) {
usr.bin/ssh/match.c
276
for ((p = strsep(&sp, SEP)), i=0; p && *p != '\0';
usr.bin/ssh/match.c
277
(p = strsep(&sp, SEP)), i++) {
usr.bin/ssh/match.c
285
for ((p = strsep(&cp, SEP)), i=0; p && *p != '\0';
usr.bin/ssh/match.c
286
(p = strsep(&cp, SEP)), i++) {
usr.bin/ssh/match.c
330
while ((cp = strsep(&tmp, ",")) != NULL) {
usr.bin/ssh/monitor.c
1040
for ((s = strsep(&l, ",")); s && *s != '\0'; (s = strsep(&l, ","))) {
usr.bin/ssh/servconf.c
2792
while ((p = strsep(&spec, ",")) && *p != '\0') {
usr.bin/ssh/servconf.c
2997
while ((cp = strsep(&cbuf, "\n")) != NULL) {
usr.bin/ssh/ssh-keygen.c
1143
while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
usr.bin/ssh/ssh-keygen.c
1768
for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
usr.bin/ssh/ssh-keygen.c
2857
while ((cp = strsep(&tmp, ",")) != NULL && *cp != '\0')
usr.bin/ssh/ssh-keyscan.c
319
while ((host = strsep(&hosts, ",")) != NULL)
usr.bin/ssh/ssh_api.c
542
while ((alg = strsep(&avail, ",")) && *alg != '\0') {
usr.bin/ssh/sshconnect2.c
1185
while ((cp = strsep(&allowed, ",")) != NULL) {
usr.bin/ssh/sshconnect2.c
172
while ((alg = strsep(&avail, ",")) && *alg != '\0') {
usr.bin/ssh/sshconnect2.c
2154
authctxt->active_ktype = strsep(&authctxt->ktypes, ",");
usr.bin/ssh/sshkey.c
335
for ((p = strsep(&cp, ",")); p && *p != '\0';
usr.bin/ssh/sshkey.c
336
(p = strsep(&cp, ","))) {
usr.bin/ssh/sshsig.c
853
while ((cp = strsep(&principals, ",")) != NULL && *cp != '\0') {
usr.bin/systat/malloc.c
259
while ((ap = strsep(&bufp, ",")) != NULL) {
usr.bin/tcpbench/tcpbench.c
343
while ((item = strsep(&list, ", \t\n")) != NULL) {
usr.bin/tmux/cmd-command-prompt.c
126
while ((prompt = strsep(&next_prompt, ",")) != NULL) {
usr.bin/tmux/cmd-command-prompt.c
136
input = strsep(&next_input, ",");
usr.bin/tmux/input.c
1087
while ((out = strsep(&ptr, ";")) != NULL) {
usr.bin/tmux/input.c
2216
while ((out = strsep(&ptr, ":")) != NULL) {
usr.bin/tmux/input.c
2842
s = strsep(&next, ";");
usr.bin/tmux/options.c
533
while ((next = strsep(&string, separator)) != NULL) {
usr.bin/tmux/server-client.c
2558
while ((next = strsep(&s, ",")) != NULL) {
usr.bin/tmux/status.c
91
typestr = strsep(&line, ":");
usr.bin/tmux/tmux.c
157
while ((next = strsep(&tmp, ":")) != NULL) {
usr.bin/tmux/tty-features.c
384
while ((next = strsep(&loop, separators)) != NULL) {
usr.bin/tmux/tty-keys.c
1466
while ((next = strsep(&cp, ";")) != NULL) {
usr.bin/tmux/tty-keys.c
1550
while ((next = strsep(&cp, ";")) != NULL) {
usr.bin/vi/ex/ex_tag.c
1052
for (i = 0; i < 2 && (t = strsep(&p, "\t ")) != NULL; ++i)
usr.bin/vmstat/dkstats.c
194
(name = strsep(&bufpp, ",")) != NULL; i++)
usr.bin/vmstat/dkstats.c
525
for (i = 0; i < dk_ndrive && (name = strsep(&bufpp, ",")) != NULL; i++) {
usr.bin/vmstat/vmstat.c
757
while ((ap = strsep(&bufp, ",")) != NULL) {
usr.bin/which/which.c
118
while ((p = strsep(&pathcpy, ":")) != NULL) {
usr.sbin/authpf/authpf.c
392
(*ap = strsep(&cp, "=")) != NULL; ) {
usr.sbin/bgpctl/bgpctl.c
1156
while ((b = strsep(&buf, " \t\n")) != NULL) {
usr.sbin/bgplgd/slowcgi.c
259
while ((pp = strsep(&path, ":")) != NULL) {
usr.sbin/btrace/btrace.c
354
if (strsep(&sysnb, "%") == NULL)
usr.sbin/chroot/chroot.c
94
while ((group = strsep(&grouplist, ",")) != NULL) {
usr.sbin/inetd/inetd.c
1233
while ((host = strsep(&hostlist, ",")) != NULL) {
usr.sbin/lpd/frontend_lpr.c
394
argv[argc] = strsep(&line, " \t");
usr.sbin/lpd/lp_stty.c
521
while ((val = strsep(&p, " \t,")) != NULL) {
usr.sbin/lpr/lpc/lpc.c
205
while (margc < MAX_MARGV - 1 && (*ap = strsep(&cp, " \t\n")) != NULL) {
usr.sbin/lpr/lpd/printjob.c
1554
while ((val = strsep(&p, " \t,")) != NULL) {
usr.sbin/mailwrapper/mailwrapper.c
131
if ((from = strsep(&cp, WS)) == NULL || cp == NULL)
usr.sbin/mailwrapper/mailwrapper.c
136
if ((to = strsep(&cp, WS)) == NULL)
usr.sbin/mailwrapper/mailwrapper.c
140
for (ap = strsep(&cp, WS); ap != NULL;
usr.sbin/mailwrapper/mailwrapper.c
141
ap = strsep(&cp, WS))
usr.sbin/makefs/makefs.c
155
while ((p = strsep(&optarg, ",")) != NULL) {
usr.sbin/mtree/mtree.c
83
while ((p = strsep(&optarg, " \t,")) != NULL)
usr.sbin/mtree/mtree.c
89
while ((p = strsep(&optarg, " \t,")) != NULL)
usr.sbin/npppd/npppd/npppd_subr.c
104
while ((ap = strsep(&line, " \t\r\n")) != NULL) {
usr.sbin/relayd/relayd.c
868
ptr = strsep(&next, delim)) {
usr.sbin/rpc.bootparamd/bootparamd.c
296
if ((word = strsep(&bp, " \t\n")) == NULL)
usr.sbin/rpc.bootparamd/bootparamd.c
328
while ((word = strsep(&bp, " \t\n")) != NULL) {
usr.sbin/rpki-client/rsync.c
277
while ((pp = strsep(&path, ":")) != NULL) {
usr.sbin/smtpd/envelope.c
317
while ((flag = strsep(&buf, " ,|")) != NULL) {
usr.sbin/smtpd/makemap.c
398
while ((subrcpt = strsep(&text, ",")) != NULL) {
usr.sbin/smtpd/parser.c
66
for (ap = argv; n < ARGVMAX && (*ap = strsep(&str, " \t")) != NULL;) {
usr.sbin/smtpd/smtp_session.c
2356
while ((opt = strsep(&copy, " "))) {
usr.sbin/smtpd/smtp_session.c
2445
while ((opt = strsep(&copy, " "))) {
usr.sbin/smtpd/smtp_session.c
2451
while ((p = strsep(&opt, ","))) {
usr.sbin/smtpd/smtpd.c
1725
while ((tmp = strsep(&p, "|")) != NULL)
usr.sbin/smtpd/spfwalk.c
185
while ((*ap = strsep(&in, " ")) != NULL) {
usr.sbin/smtpd/spfwalk.c
370
strsep(&m4, "/");
usr.sbin/smtpd/spfwalk.c
375
strsep(&m6, "/");
usr.sbin/unbound/util/config_file.c
2402
while((p=strsep(&s, " \t\n")) != NULL) {
usr.sbin/unbound/util/configparser.y
2556
while((p=strsep(&s, " \t\n")) != NULL) {
usr.sbin/user/user.c
1865
while ((u.u_groupv[u.u_groupc] = strsep(&optarg, ",")) != NULL &&
usr.sbin/user/user.c
1987
while ((u.u_groupv[u.u_groupc] = strsep(&optarg, ",")) != NULL &&
usr.sbin/user/user.c
1999
while ((u.u_groupv[u.u_groupc] = strsep(&optarg, ",")) != NULL &&
usr.sbin/ypldap/yp.c
524
if (!(cp = strsep(&bp, "@"))) {
usr.sbin/ypldap/ypldap.c
241
if (!(cp = strsep(&bp, ",")))
usr.sbin/ypserv/revnetgroup/parse_netgroup.c
207
gpos = strsep(&pos, ")");
usr.sbin/ypserv/revnetgroup/parse_netgroup.c
212
if ((spos = strsep(&gpos, ","))) {
usr.sbin/ypserv/revnetgroup/parse_netgroup.c
255
spos = strsep(&pos, ", \t");