diff options
author | schwarze <> | 2011-07-25 00:38:53 +0000 |
---|---|---|
committer | schwarze <> | 2011-07-25 00:38:53 +0000 |
commit | 339c056f856313e215baab8ddc4bc0ce064b4571 (patch) | |
tree | 7c0511efd76ae46bc18c0955627ddf69509014c6 /src/lib/libc/string/strcat.3 | |
parent | 3ad0ccfe078fe407c711a9d1fb21b9b79aa67f2c (diff) | |
download | openbsd-339c056f856313e215baab8ddc4bc0ce064b4571.tar.gz openbsd-339c056f856313e215baab8ddc4bc0ce064b4571.tar.bz2 openbsd-339c056f856313e215baab8ddc4bc0ce064b4571.zip |
update HISTORY and SEE ALSO for all of string(3), together with various
smaller improvements; jmc@ and nicm@ both ask me to get this in because
further tweaking will be easier in-tree
Diffstat (limited to 'src/lib/libc/string/strcat.3')
-rw-r--r-- | src/lib/libc/string/strcat.3 | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/src/lib/libc/string/strcat.3 b/src/lib/libc/string/strcat.3 index 4068db752c..81aae19a63 100644 --- a/src/lib/libc/string/strcat.3 +++ b/src/lib/libc/string/strcat.3 | |||
@@ -1,3 +1,5 @@ | |||
1 | .\" $OpenBSD: strcat.3,v 1.13 2011/07/25 00:38:52 schwarze Exp $ | ||
2 | .\" | ||
1 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. |
2 | .\" All rights reserved. | 4 | .\" All rights reserved. |
3 | .\" | 5 | .\" |
@@ -29,9 +31,7 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. |
31 | .\" | 33 | .\" |
32 | .\" $OpenBSD: strcat.3,v 1.12 2007/05/31 19:19:32 jmc Exp $ | 34 | .Dd $Mdocdate: July 25 2011 $ |
33 | .\" | ||
34 | .Dd $Mdocdate: May 31 2007 $ | ||
35 | .Dt STRCAT 3 | 35 | .Dt STRCAT 3 |
36 | .Os | 36 | .Os |
37 | .Sh NAME | 37 | .Sh NAME |
@@ -122,8 +122,9 @@ functions are a better choice, as shown below. | |||
122 | .Xr memcpy 3 , | 122 | .Xr memcpy 3 , |
123 | .Xr memmove 3 , | 123 | .Xr memmove 3 , |
124 | .Xr strcpy 3 , | 124 | .Xr strcpy 3 , |
125 | .Xr strlcat 3 , | 125 | .Xr strlcpy 3 , |
126 | .Xr strlcpy 3 | 126 | .Xr wcscat 3 , |
127 | .Xr wcslcpy 3 | ||
127 | .Sh STANDARDS | 128 | .Sh STANDARDS |
128 | The | 129 | The |
129 | .Fn strcat | 130 | .Fn strcat |
@@ -131,3 +132,10 @@ and | |||
131 | .Fn strncat | 132 | .Fn strncat |
132 | functions conform to | 133 | functions conform to |
133 | .St -ansiC . | 134 | .St -ansiC . |
135 | .Sh HISTORY | ||
136 | The | ||
137 | .Fn strcat | ||
138 | and | ||
139 | .Fn strncat | ||
140 | functions first appeared in | ||
141 | .At v7 . | ||