MEMCPY
Section: Linux Programmer's Manual (3)
Updated: 1993-04-10
Index
JM Home Page
roff page
名前
memcpy - メモリ領域をコピーする。
書式
#include <string.h>
void *memcpy(void *dest, const void *src, size_t n);
説明
memcpy()
はメモリ領域 src の先頭 n バイトを
メモリ領域 dest にコピーする。コピー元の領域と
コピー先の領域が重なってはならない。重なっている場合は
memmove(3)
を使うこと。
返り値
memcpy()
は dest へのポインタを返す。
準拠
SVr4, 4.3BSD, C89, C99, POSIX.1-2001.
関連項目
bcopy(3),
memccpy(3),
memmove(3),
mempcpy(3),
strcpy(3),
strncpy(3),
wmemcpy(3)
Index
- 名前
-
- 書式
-
- 説明
-
- 返り値
-
- 準拠
-
- 関連項目
-
This document was created by
man2html,
using the manual pages.
Time: 04:31:52 GMT, November 19, 2007