OSDN Git Service

Convert release and draft pages to UTF-8.
[linuxjm/jm.git] / manual / LDP_man-pages / release / man3 / wmemcpy.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
7 .\"
8 .\" References consulted:
9 .\"   GNU glibc-2 source code and manual
10 .\"   Dinkumware C library reference http://www.dinkumware.com/
11 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
12 .\"   ISO/IEC 9899:1999
13 .\"
14 .\" About this Japanese page, please contact to JM Project <JM@linux.or.jp>
15 .\" Translated Tue Oct 26 00:43:58 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\"
18 .TH WMEMCPY 3 1999-07-25 "GNU" "Linux Programmer's Manual"
19 .SH 名前
20 wmemcpy \- ワイド文字の配列をコピーする
21 .SH 書式
22 .nf
23 .B #include <wchar.h>
24 .sp
25 .BI "wchar_t *wmemcpy(wchar_t *" dest ", const wchar_t *" src ", size_t " n );
26 .fi
27 .SH 説明
28 .BR wmemcpy ()
29 関数は、
30 .BR memcpy (3)
31 関数に対応するワイド文字関数である。
32 この関数は、\fIsrc\fP を先頭とする配列から \fIdest\fP を先頭とする配列
33 に \fIn\fP 個のワイド文字をコピーする。
34 .PP
35 2 つの配列は重なっていてはならない。配列が重なっている場合には
36 .BR wmemmove (3)
37 を使ってコピーすること。
38 .PP
39 プログラマは、少なくとも \fIn\fP 個のワイド文字が入る領域を \fIdest\fP
40 に確保しなければならない。
41 .SH 返り値
42 .BR wmemcpy ()
43 は \fIdest\fP を返す。
44 .SH 準拠
45 C99.
46 .SH 関連項目
47 .BR memcpy (3),
48 .BR wcscpy (3),
49 .BR wmemmove (3),
50 .BR wmempcpy (3)