X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/7b00c0c43f52e9d27168e67a26aac19065cdb40c..ad3c9f2af814c84582fdd1649e49ec4f68572c5a:/string/FreeBSD/bcopy.3 diff --git a/string/FreeBSD/bcopy.3 b/string/FreeBSD/bcopy.3 index b7f511b..e0371a4 100644 --- a/string/FreeBSD/bcopy.3 +++ b/string/FreeBSD/bcopy.3 @@ -42,20 +42,20 @@ .Sh SYNOPSIS .In strings.h .Ft void -.Fn bcopy "const void *src" "void *dst" "size_t len" +.Fn bcopy "const void *s1" "void *s2" "size_t n" .Sh DESCRIPTION The .Fn bcopy function copies -.Fa len +.Fa n bytes from string -.Fa src +.Fa s1 to string -.Fa dst . +.Fa s2 . The two strings may overlap. If -.Fa len +.Fa n is zero, no bytes are copied. .Sh SEE ALSO .Xr memccpy 3 ,