Symbol: strncat
bin/cp/cp.c
413
(void)strncat(target_mid, p, nlen);
bin/csh/csh.h
486
#define Strncat(a, b, c) strncat(a, b, c)
bin/ksh/misc.c
117
return strncat(ns, s, n);
crypto/dist/ipsec-tools/src/racoon/misc.h
68
#define strlcat(d,s,l) strncat(d,s,(l)-strlen(d)-1)
include/ssp/string.h
105
#define strncat(dst, src, len) __ssp_bos_check3(strncat, dst, src, len)
include/ssp/string.h
92
__ssp_bos_icheck3_restrict(strncat, char *, const char *)
include/string.h
105
char *strncat(char * __restrict, const char * __restrict, size_t);
lib/libc/db/hash/ndbm.c
75
(void)strncat(path, DBM_SUFFIX, sizeof(path) - strlen(path) - 1);
lib/libc/rpc/clnt_perror.c
259
(void)strncat(str, clnt_sperrno(rpc_createerr.cf_stat), len - 1);
lib/libc/rpc/clnt_perror.c
262
(void) strncat(str, " - ", len - 1);
lib/libc/rpc/clnt_perror.c
263
(void) strncat(str,
lib/libc/rpc/clnt_perror.c
268
(void)strncat(str, " - ", len - 1);
lib/libc/rpc/clnt_perror.c
269
(void)strncat(str, strerror(rpc_createerr.cf_error.re_errno),
lib/libcompat/regexp/regexp.c
1295
(void)strncat(buf, p, sizeof(buf) - strlen(buf) - 1);
lib/libedit/history.c
72
#define Strncat(d, s, n) strncat(d, s, n)
lib/libpuffs/paths.c
284
strncat(path, pcomp, complen);
lib/libskey/put.c
2097
strncat (engout, &Wp[extract (cp, 0, 11)][0], 4);
lib/libskey/put.c
2099
strncat (engout, &Wp[extract (cp, 11, 11)][0], 4);
lib/libskey/put.c
2101
strncat (engout, &Wp[extract (cp, 22, 11)][0], 4);
lib/libskey/put.c
2103
strncat (engout, &Wp[extract (cp, 33, 11)][0], 4);
lib/libskey/put.c
2105
strncat (engout, &Wp[extract (cp, 44, 11)][0], 4);
lib/libskey/put.c
2107
strncat (engout, &Wp[extract (cp, 55, 11)][0], 4);
sbin/mount_portal/pt_filter.c
71
strncat(tempbuff, " ", n - strlen(tempbuff));
sbin/mount_portal/pt_filter.c
72
strncat(tempbuff, cmdv[i], n - strlen(tempbuff));
sbin/mount_portal/pt_filter.c
74
strncat(tempbuff, " ", n - strlen(tempbuff));
sbin/nvmectl/util.c
119
strncat(out, ")", len);
sys/arch/ia64/stand/common/dev_net.c
293
strncat(temp, "0", 1);
sys/arch/ia64/stand/common/dev_net.c
296
strncat(temp, num, 2);
sys/arch/ia64/stand/common/dev_net.c
299
strncat(temp, ":", 1);
sys/lib/libkern/libkern.h
413
char *strncat(char *, const char *, size_t);
tests/lib/libc/ssp/h_strncat.c
44
(void)strncat(b, "1020202020202", len);
tests/lib/libc/string/t_strcat.c
136
ATF_CHECK(strncat(buf, "xxx", 0) == buf);
tests/lib/libc/string/t_strcat.c
138
ATF_CHECK(strncat(buf, "xxx", 1) == buf);
tests/lib/libc/string/t_strcat.c
140
ATF_CHECK(strncat(buf, "xxx", 2) == buf);
tests/lib/libc/string/t_strcat.c
142
ATF_CHECK(strncat(buf, "\0", 1) == buf);
usr.bin/xargs/strnsubst.c
78
(void)strncat(s2, s1, (uintptr_t)this - (uintptr_t)s1);
usr.sbin/ldpd/ldp_peer.c
455
strncat(abuf, satos(&wp->address.sa),
usr.sbin/ldpd/ldp_peer.c
457
strncat(abuf, " ", sizeof(abuf) -1);
usr.sbin/sysinst/arch/mac68k/md.c
772
strncat(name, " (", len_name-strlen(name));
usr.sbin/sysinst/arch/mac68k/md.c
773
strncat(name, &macosblk[37], len_name-strlen(name));
usr.sbin/sysinst/arch/mac68k/md.c
774
strncat(name, ")", len_name-strlen(name));