OSDN Git Service

efb06903360c54c1d3f78dc14d59fbbda2574914
[linuxjm/LDP_man-pages.git] / draft / 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 .\"O .SH NAME
20 .SH 名前
21 .\"O wmemcpy \- copy an array of wide-characters
22 wmemcpy \- ワイド文字の配列をコピーする
23 .\"O .SH SYNOPSIS
24 .SH 書式
25 .nf
26 .B #include <wchar.h>
27 .sp
28 .BI "wchar_t *wmemcpy(wchar_t *" dest ", const wchar_t *" src ", size_t " n );
29 .fi
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The
33 .\"O .BR wmemcpy ()
34 .\"O function is the wide-character equivalent of the
35 .\"O .BR memcpy (3)
36 .\"O function.
37 .\"O It copies \fIn\fP wide characters from the array starting at
38 .\"O \fIsrc\fP to the array starting at \fIdest\fP.
39 .BR wmemcpy ()
40 関数は、
41 .BR memcpy (3)
42 関数に対応するワイド文字関数である。
43 この関数は、\fIsrc\fP を先頭とする配列から \fIdest\fP を先頭とする配列
44 に \fIn\fP 個のワイド文字をコピーする。
45 .PP
46 .\"O The arrays may not overlap; use
47 .\"O .BR wmemmove (3)
48 .\"O to copy between overlapping
49 .\"O arrays.
50 2 つの配列は重なっていてはならない。配列が重なっている場合には
51 .BR wmemmove (3)
52 を使ってコピーすること。
53 .PP
54 .\"O The programmer must ensure that there is room for at least \fIn\fP wide
55 .\"O characters at \fIdest\fP.
56 プログラマは、少なくとも \fIn\fP 個のワイド文字が入る領域を \fIdest\fP
57 に確保しなければならない。
58 .\"O .SH "RETURN VALUE"
59 .SH 返り値
60 .\"O .BR wmemcpy ()
61 .\"O returns \fIdest\fP.
62 .BR wmemcpy ()
63 は \fIdest\fP を返す。
64 .\"O .SH "CONFORMING TO"
65 .SH 準拠
66 C99.
67 .\"O .SH "SEE ALSO"
68 .SH 関連項目
69 .BR memcpy (3),
70 .BR wcscpy (3),
71 .BR wmemmove (3),
72 .BR wmempcpy (3)