.\" Copyright (c) Bruno Haible .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as .\" published by the Free Software Foundation; either version 2 of .\" the License, or (at your option) any later version. .\" .\" References consulted: .\" GNU glibc-2 source code and manual .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" .\" About this Japanese page, please contact to JM Project .\" Translated Tue Oct 26 00:51:13 JST 1999 .\" by FUJIWARA Teruyoshi .\" .TH WMEMMOVE 3 1999-07-25 "GNU" "Linux Programmer's Manual" .\"O .SH NAME .SH 名前 .\"O wmemmove \- copy an array of wide-characters wmemmove \-ワイド文字の配列をコピーする .\"O .SH SYNOPSIS .SH 書式 .nf .B #include .sp .BI "wchar_t *wmemmove(wchar_t *" dest ", const wchar_t *" src ", size_t " n ); .fi .\"O .SH DESCRIPTION .SH 説明 .\"O The .\"O .BR wmemmove () .\"O function is the wide-character equivalent of the .\"O .BR memmove (3) .\"O function. .\"O It copies \fIn\fP wide characters from the array .\"O starting at \fIsrc\fP to the array starting at \fIdest\fP. .\"O The arrays may .\"O overlap. .BR wmemmove () 関数は、 .BR memmove (3) 関数に対応するワイド文字関数であ る。この関数は \fIsrc\fP を先頭とする配列から \fIdest\fP を先頭とする 配列に \fIn\fP 個のワイド文字をコピーする。2 つの配列は重なっていても 構わない。 .PP .\"O The programmer must ensure that there is room for at least \fIn\fP wide .\"O characters at \fIdest\fP. プログラマは、少なくとも \fIn\fP 個のワイド文字が入る領域を \fIdest\fP に確保しなければならない。 .\"O .SH "RETURN VALUE" .SH 返り値 .\"O .BR wmemmove () .\"O returns \fIdest\fP. .BR wmemmove () は \fIdest\fP を返す。 .\"O .SH "CONFORMING TO" .SH 準拠 C99. .\"O .SH "SEE ALSO" .SH 関連項目 .BR memmove (3), .BR wmemcpy (3)