wmemmoveのヘルプ・マニュアル
日本語 英語
wmemmove --help
man wmemmove
WMEMMOVE(3) Linux Programmer’s Manual WMEMMOVE(3)
名前
wmemmove -ワイド文字の配列をコピーする
書式
#include
wchar_t *wmemmove(wchar_t *dest, const wchar_t *src, size_t n);
説明
wmemmove() 関数は、 memmove(3) 関数に対応するワイド文字関数である。この
関数は src を先頭とする配列から dest を先頭とする配列に n 個のワイド 文
字をコピーする。2 つの配列は重なっていても構わない。
プログラマは、少なくとも n 個のワイド文字が入る領域を dest に確保しなけ
ればならない。
返り値
wmemmove() は dest を返す。
準拠
C99.
関連項目
memmove(3), wmemcpy(3)
GNU 1999-07-25 WMEMMOVE(3)
WMEMMOVE(3) Linux Programmer’s Manual WMEMMOVE(3)
NAME
wmemmove - copy an array of wide-characters
SYNOPSIS
#include
wchar_t *wmemmove(wchar_t *dest, const wchar_t *src, size_t n);
DESCRIPTION
The wmemmove() function is the wide-character equivalent of the mem-
move(3) function. It copies n wide characters from the array starting
at src to the array starting at dest. The arrays may overlap.
The programmer must ensure that there is room for at least n wide char-
acters at dest.
RETURN VALUE
wmemmove() returns dest.
CONFORMING TO
C99.
SEE ALSO
memmove(3), wmemcpy(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 WMEMMOVE(3)