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/strlcpy.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/strlcpy.3')
-rw-r--r-- | src/lib/libc/string/strlcpy.3 | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/lib/libc/string/strlcpy.3 b/src/lib/libc/string/strlcpy.3 index feda63fae7..ead54ec438 100644 --- a/src/lib/libc/string/strlcpy.3 +++ b/src/lib/libc/string/strlcpy.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: strlcpy.3,v 1.19 2007/05/31 19:19:32 jmc Exp $ | 1 | .\" $OpenBSD: strlcpy.3,v 1.20 2011/07/25 00:38:53 schwarze Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Copyright (c) 1998, 2000 Todd C. Miller <Todd.Miller@courtesan.com> | 3 | .\" Copyright (c) 1998, 2000 Todd C. Miller <Todd.Miller@courtesan.com> |
4 | .\" | 4 | .\" |
@@ -14,7 +14,7 @@ | |||
14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | .\" | 16 | .\" |
17 | .Dd $Mdocdate: May 31 2007 $ | 17 | .Dd $Mdocdate: July 25 2011 $ |
18 | .Dt STRLCPY 3 | 18 | .Dt STRLCPY 3 |
19 | .Os | 19 | .Os |
20 | .Sh NAME | 20 | .Sh NAME |
@@ -176,7 +176,8 @@ As a matter of fact, the first version of this manual page got it wrong. | |||
176 | .Sh SEE ALSO | 176 | .Sh SEE ALSO |
177 | .Xr snprintf 3 , | 177 | .Xr snprintf 3 , |
178 | .Xr strncat 3 , | 178 | .Xr strncat 3 , |
179 | .Xr strncpy 3 | 179 | .Xr strncpy 3 , |
180 | .Xr wcslcpy 3 | ||
180 | .Sh HISTORY | 181 | .Sh HISTORY |
181 | The | 182 | The |
182 | .Fn strlcpy | 183 | .Fn strlcpy |
@@ -184,3 +185,10 @@ and | |||
184 | .Fn strlcat | 185 | .Fn strlcat |
185 | functions first appeared in | 186 | functions first appeared in |
186 | .Ox 2.4 . | 187 | .Ox 2.4 . |
188 | .Sh AUTHORS | ||
189 | The | ||
190 | .Fn strlcpy | ||
191 | and | ||
192 | .Fn strlcat | ||
193 | functions were created by | ||
194 | .An Todd C. Miller Aq Todd.Miller@courtesan.com . | ||