]> git.saurik.com Git - apple/libc.git/blame - string/FreeBSD/memmove.3.patch
Libc-763.13.tar.gz
[apple/libc.git] / string / FreeBSD / memmove.3.patch
CommitLineData
1f2f436a
A
1--- memmove.3.bsdnew 2009-11-18 18:24:33.000000000 -0800
2+++ memmove.3 2009-11-18 18:24:33.000000000 -0800
3@@ -43,24 +43,28 @@
224c7076
A
4 .Sh SYNOPSIS
5 .In string.h
6 .Ft void *
7-.Fn memmove "void *dst" "const void *src" "size_t len"
8+.Fo memmove
9+.Fa "void *s1"
10+.Fa "const void *s2"
11+.Fa "size_t n"
12+.Fc
13 .Sh DESCRIPTION
14 The
15 .Fn memmove
16 function
17 copies
18-.Fa len
19+.Fa n
20 bytes from string
21-.Fa src
22+.Fa s2
23 to string
24-.Fa dst .
25+.Fa s1 .
26 The two strings may overlap;
27 the copy is always done in a non-destructive manner.
28 .Sh RETURN VALUES
29 The
30 .Fn memmove
31 function returns the original value of
32-.Fa dst .
33+.Fa s1 .
34 .Sh SEE ALSO
35 .Xr bcopy 3 ,
36 .Xr memccpy 3 ,