]> git.saurik.com Git - apple/libc.git/blob - string/FreeBSD/bcopy.3.patch
e06b82fdb6f2600bd892720cd019d3b298edfa97
[apple/libc.git] / string / FreeBSD / bcopy.3.patch
1 --- _SB/Libc/string/FreeBSD/bcopy.3 2004-11-25 11:38:46.000000000 -0800
2 +++ _SB/Libc/string/FreeBSD/bcopy.3.edit 2006-06-28 16:55:53.000000000 -0700
3 @@ -46,20 +46,20 @@
4 .Sh SYNOPSIS
5 .In strings.h
6 .Ft void
7 -.Fn bcopy "const void *src" "void *dst" "size_t len"
8 +.Fn bcopy "const void *s1" "void *s2" "size_t n"
9 .Sh DESCRIPTION
10 The
11 .Fn bcopy
12 function
13 copies
14 -.Fa len
15 +.Fa n
16 bytes from string
17 -.Fa src
18 +.Fa s1
19 to string
20 -.Fa dst .
21 +.Fa s2 .
22 The two strings may overlap.
23 If
24 -.Fa len
25 +.Fa n
26 is zero, no bytes are copied.
27 .Sh SEE ALSO
28 .Xr memccpy 3 ,