]> git.saurik.com Git - apple/libc.git/blob - string/FreeBSD/bcopy.3.patch
c6bb7b8e5e2f4c05488ab1d40b8c08aaf7ddbb61
[apple/libc.git] / string / FreeBSD / bcopy.3.patch
1 --- bcopy.3.bsdnew 2009-11-18 18:24:32.000000000 -0800
2 +++ bcopy.3 2009-11-18 18:24:32.000000000 -0800
3 @@ -42,20 +42,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 ,