Penguin
Annotated edit history of memmove(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 MEMMOVE
2 !!!MEMMOVE
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 memmove - copy memory area
14 !!SYNOPSIS
15
16
17 __#include
18 __''dest''__, const void *__''src''__, size_t__ ''n''__);
19 __
20 !!DESCRIPTION
21
22
23 The __memmove()__ function copies ''n'' bytes from
24 memory area ''src'' to memory area ''dest''. The
25 memory areas may overlap.
26 !!RETURN VALUE
27
28
29 The __memmove()__ function returns a pointer to
30 ''dest''.
31 !!CONFORMING TO
32
33
34 SVID 3, BSD 4.3, ISO 9899
35 !!SEE ALSO
36
37
38 bcopy(3), memccpy(3), memcpy(3),
39 strcpy(3), strncpy(3)
40 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.