OSDN Git Service

(split) DP: release pages (catch up to 3.50).
[linuxjm/LDP_man-pages.git] / release / man3 / wcpcpy.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" %%%LICENSE_START(GPLv2+_DOC_ONEPARA)
4 .\" This is free documentation; you can redistribute it and/or
5 .\" modify it under the terms of the GNU General Public License as
6 .\" published by the Free Software Foundation; either version 2 of
7 .\" the License, or (at your option) any later version.
8 .\" %%%LICENSE_END
9 .\"
10 .\" References consulted:
11 .\"   GNU glibc-2 source code and manual
12 .\"   Dinkumware C library reference http://www.dinkumware.com/
13 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
14 .\"
15 .\"*******************************************************************
16 .\"
17 .\" This file was generated with po4a. Translate the source file.
18 .\"
19 .\"*******************************************************************
20 .TH WCPCPY 3 2011\-10\-01 GNU "Linux Programmer's Manual"
21 .SH 名前
22 wcpcpy \- ワイド文字文字列をコピーし、その末尾を指すポインタを返す
23 .SH 書式
24 .nf
25 \fB#include <wchar.h>\fP
26 .sp
27 \fBwchar_t *wcpcpy(wchar_t *\fP\fIdest\fP\fB, const wchar_t *\fP\fIsrc\fP\fB);\fP
28 .fi
29 .sp
30 .in -4n
31 glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7)  参照):
32 .in
33 .sp
34 \fBwcpcpy\fP():
35 .PD 0
36 .ad l
37 .RS 4
38 .TP  4
39 glibc 2.10 以降:
40 _XOPEN_SOURCE\ >=\ 700 || _POSIX_C_SOURCE\ >=\ 200809L
41 .TP 
42 glibc 2.10 より前:
43 _GNU_SOURCE
44 .RE
45 .ad
46 .PD
47 .SH 説明
48 \fBwcpcpy\fP()  関数は、 \fBstpcpy\fP(3)  関数に対応するワイド文字関数である。 この関数は \fIsrc\fP
49 が指すワイド文字文字列を、 終端の NULL ワイド文字 (L\(aq\e0\(aq) を含めて、 \fIdest\fP が指す配列にコピーする。
50 .PP
51 これらの文字列は重なっていてはならない。
52 .PP
53 プログラマは、少なくとも \fIwcslen(src)+1\fP 文字のワイド文字 が入るだけの領域を \fIdest\fP に対して確保しなければならない。
54 .SH 返り値
55 \fBwcpcpy\fP()  は、ワイド文字文字列 \fIdest\fP の末尾、つまり終端の NULL ワイド文字 を指すポインタを返す。
56 .SH 準拠
57 POSIX.1\-2008.
58 .SH 関連項目
59 \fBstrcpy\fP(3), \fBwcscpy\fP(3)
60 .SH この文書について
61 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.50 の一部
62 である。プロジェクトの説明とバグ報告に関する情報は
63 http://www.kernel.org/doc/man\-pages/ に書かれている。