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