1 --- _SB/Libc/string/FreeBSD/strcat.3 2003-05-20 15:23:54.000000000 -0700
2 +++ _SB/Libc/string/FreeBSD/strcat.3.edit 2006-06-28 16:55:53.000000000 -0700
10 .Nd concatenate strings
16 -.Fn strcat "char * restrict s" "const char * restrict append"
18 +.Fa "char *restrict s1"
19 +.Fa "const char *restrict s2"
22 -.Fn strncat "char * restrict s" "const char * restrict append" "size_t count"
24 +.Fa "char *restrict s1"
25 +.Fa "const char *restrict s2"
34 append a copy of the null-terminated string
37 to the end of the null-terminated string
40 then add a terminating
45 must have sufficient space to hold the result.
56 and then adds a terminating
65 .Sh SECURITY CONSIDERATIONS
70 foo(const char *arbitrary_string)
73 + char onstack[8] = "";
82 -.%T "The FreeBSD Security Architecture"
85 -.Pa "/usr/share/doc/{to be decided}" . )