Loading...
--- Libc/Libc-825.25/string/FreeBSD/bcopy.3
+++ Libc/Libc-763.12/string/FreeBSD/bcopy.3
@@ -42,20 +42,20 @@
.Sh SYNOPSIS
.In strings.h
.Ft void
-.Fn bcopy "const void *s1" "void *s2" "size_t n"
+.Fn bcopy "const void *src" "void *dst" "size_t len"
.Sh DESCRIPTION
The
.Fn bcopy
function
copies
-.Fa n
+.Fa len
bytes from string
-.Fa s1
+.Fa src
to string
-.Fa s2 .
+.Fa dst .
The two strings may overlap.
If
-.Fa n
+.Fa len
is zero, no bytes are copied.
.Sh SEE ALSO
.Xr memccpy 3 ,