.\" 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 Sun Oct 17 22:19:07 JST 1999 .\" by FUJIWARA Teruyoshi .\" .TH WCSCPY 3 1999-07-25 "GNU" "Linux Programmer's Manual" .\"O .SH NAME .SH 名前 .\"O wcscpy \- copy a wide-character string wcscpy \- ワイド文字文字列をコピーする .\"O .SH SYNOPSIS .SH 書式 .nf .B #include .sp .BI "wchar_t *wcscpy(wchar_t *" dest ", const wchar_t *" src ); .fi .\"O .SH DESCRIPTION .SH 説明 .\"O The .\"O .BR wcscpy () .\"O function is the wide-character equivalent .\"O of the .\"O .BR strcpy (3) .\"O function. .\"O It copies the wide-character string pointed to by \fIsrc\fP, .\"O including the terminating L\(aq\\0\(aq character, to the array pointed to by .\"O \fIdest\fP. .BR wcscpy () 関数は、 .BR strcpy (3) 関数に対応するワイド文字関数である。 この関数は、\fIsrc\fP が指すワイド文字(終端の L\(aq\\0\(aq を含む)を \fIdest\fP が指す配列にコピーする。 .PP .\"O The strings may not overlap. これらの文字列は重なっていてはならない。 .PP .\"O The programmer must ensure that there is .\"O room for at least \fIwcslen(src)+1\fP .\"O wide characters at \fIdest\fP. プログラマは、少なくとも \fIwcslen(src)+1\fP 文字のワイド文字 が入るだけの領域を \fIdest\fP に対して確保しなければならない。 .\"O .SH "RETURN VALUE" .SH 返り値 .\"O .BR wcscpy () .\"O returns \fIdest\fP. .BR wcscpy () は \fIdest\fP を返す。 .\"O .SH "CONFORMING TO" .SH 準拠 C99. .\"O .SH "SEE ALSO" .SH 関連項目 .BR strcpy (3), .BR wcpcpy (3), .BR wcscat (3), .BR wcsdup (3), .BR wmemcpy (3)