wmemcpyのヘルプ・マニュアル
日本語 英語
wmemcpy --help
man wmemcpy
WMEMCPY(3) Linux Programmer’s Manual WMEMCPY(3)
名前
wmemcpy - ワイド文字の配列をコピーする
書式
#include
wchar_t *wmemcpy(wchar_t *dest, const wchar_t *src, size_t n);
説明
wmemcpy() 関数は、 memcpy(3) 関数に対応するワイド文字関数である。この関
数は、src を先頭とする配列から dest を先頭とする配列に n 個のワイド文字
をコピーする。
2 つ の配列は重なっていてはならない。配列が重なっている場合には wmem-
move(3) を使ってコピーすること。
プログラマは、少なくとも n 個のワイド文字が入る領域を dest に確保しなけ
ればならない。
返り値
wmemcpy() は dest を返す。
準拠
C99.
関連項目
memcpy(3), wcscpy(3), wmemmove(3), wmempcpy(3)
GNU 1999-07-25 WMEMCPY(3)
WMEMCPY(3) Linux Programmer’s Manual WMEMCPY(3)
NAME
wmemcpy - copy an array of wide-characters
SYNOPSIS
#include
wchar_t *wmemcpy(wchar_t *dest, const wchar_t *src, size_t n);
DESCRIPTION
The wmemcpy() function is the wide-character equivalent of the mem-
cpy(3) function. It copies n wide characters from the array starting
at src to the array starting at dest.
The arrays may not overlap; use wmemmove(3) to copy between overlapping
arrays.
The programmer must ensure that there is room for at least n wide char-
acters at dest.
RETURN VALUE
wmemcpy() returns dest.
CONFORMING TO
C99.
SEE ALSO
memcpy(3), wcscpy(3), wmemmove(3), wmempcpy(3)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
GNU 1999-07-25 WMEMCPY(3)