Loading...
string/FreeBSD/memccpy.3 Libc-1725.40.4 Libc-825.26
--- Libc/Libc-1725.40.4/string/FreeBSD/memccpy.3
+++ Libc/Libc-825.26/string/FreeBSD/memccpy.3
@@ -40,8 +40,8 @@
 .In string.h
 .Ft void *
 .Fo memccpy
-.Fa "void *restrict dst"
-.Fa "const void *restrict src"
+.Fa "void *restrict s1"
+.Fa "const void *restrict s2"
 .Fa "int c"
 .Fa "size_t n"
 .Fc
@@ -50,17 +50,17 @@
 .Fn memccpy
 function
 copies bytes from string
-.Fa src
+.Fa s2
 to string
-.Fa dst .
+.Fa s1 .
 If the character
 .Fa c
 (as converted to an unsigned char) occurs in the string
-.Fa src ,
+.Fa s2 ,
 the copy stops and a pointer to the byte after the copy of
 .Fa c
 in the string
-.Fa dst
+.Fa s1
 is returned.
 Otherwise,
 .Fa n