OSDN Git Service

a9158abc77d324dbc815c1024912c7a9333593d9
[linuxjm/LDP_man-pages.git] / release / man3 / memcpy.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\"     Linux libc source code
25 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\"     386BSD man pages
27 .\" Modified Sun Jul 25 10:41:09 1993 by Rik Faith (faith@cs.unc.edu)
28 .\"
29 .\" Japanese Version Copyright (c) 1997 Ueyama Rui
30 .\"         all rights reserved.
31 .\" Translated Tue Feb 21 0:49:30 JST 1997
32 .\"         by Ueyama Rui <ueyama@campusnet.or.jp>
33 .\"
34 .TH MEMCPY 3  1993-04-10 "" "Linux Programmer's Manual"
35 .SH Ì¾Á°
36 memcpy \- ¥á¥â¥êÎΰè¤ò¥³¥Ô¡¼¤¹¤ë¡£
37 .SH ½ñ¼°
38 .nf
39 .B #include <string.h>
40 .sp
41 .BI "void *memcpy(void *" dest ", const void *" src ", size_t " n );
42 .fi
43 .SH ÀâÌÀ
44 .BR memcpy ()
45 ¤Ï¥á¥â¥êÎΰè \fIsrc\fP ¤ÎÀèƬ \fPn\fP ¥Ð¥¤¥È¤ò
46 ¥á¥â¥êÎΰè \fIdest\fP ¤Ë¥³¥Ô¡¼¤¹¤ë¡£¥³¥Ô¡¼¸µ¤ÎÎΰè¤È
47 ¥³¥Ô¡¼Àè¤ÎÎΰ褬½Å¤Ê¤Ã¤Æ¤Ï¤Ê¤é¤Ê¤¤¡£½Å¤Ê¤Ã¤Æ¤¤¤ë¾ì¹ç¤Ï
48 .BR memmove (3)
49 ¤ò»È¤¦¤³¤È¡£
50 .SH ÊÖ¤êÃÍ
51 .BR memcpy ()
52 ¤Ï \fIdest\fP ¤Ø¤Î¥Ý¥¤¥ó¥¿¤òÊÖ¤¹¡£
53 .SH ½àµò
54 SVr4, 4.3BSD, C89, C99, POSIX.1-2001.
55 .SH ´ØÏ¢¹àÌÜ
56 .BR bcopy (3),
57 .BR memccpy (3),
58 .BR memmove (3),
59 .BR mempcpy (3),
60 .BR strcpy (3),
61 .BR strncpy (3),
62 .BR wmemcpy (3)