OSDN Git Service

7e63c2d784eb0259fe5e7980764526b297bf4c3f
[linuxjm/LDP_man-pages.git] / draft / man3 / wcscat.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 Sun Oct 17 21:56:31 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\"
18 .TH WCSCAT 3  2011-09-28 "GNU" "Linux Programmer's Manual"
19 .\"O .SH NAME
20 .SH 名前
21 .\"O wcscat \- concatenate two wide-character strings
22 wcscat \- 2 つのワイド文字文字列を結合する
23 .\"O .SH SYNOPSIS
24 .SH 書式
25 .nf
26 .B #include <wchar.h>
27 .sp
28 .BI "wchar_t *wcscat(wchar_t *" dest ", const wchar_t *" src );
29 .fi
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The
33 .\"O .BR wcscat ()
34 .\"O function is the wide-character equivalent
35 .\"O of the
36 .\"O .BR strcat (3)
37 .\"O function.
38 .\"O It copies the wide-character string pointed to by \fIsrc\fP,
39 .\"O including the terminating null wide character (L\(aq\\0\(aq),
40 .\"O to the end of the wide-character string pointed to by \fIdest\fP.
41 .BR wcscat ()
42 関数は、
43 .BR strcat (3)
44 に対応するワイド文字関数である。
45 この関数は、\fIsrc\fP が指すワイド文字文字列
46 (終端の NULL ワイド文字 (L\(aq\\0\(aq) を含む) を、
47 \fIdest\fP が指すワイド文字文字列の最後にコピーする。
48 .PP
49 .\"O The strings may not overlap.
50 この文字列は重なっていてはならない。
51 .PP
52 .\"O The programmer must ensure that there is room for at least
53 .\"O \fIwcslen(dest)+wcslen(src)+1\fP wide characters at \fIdest\fP.
54 プログラマは、少なくとも \fIwcslen(dest)+wcslen(src)+1\fP 文字の
55 ワイド文字が入るだけの領域を \fIdest\fP に対して確保しなければならない。
56 .\"O .SH "RETURN VALUE"
57 .SH 返り値
58 .\"O .BR wcscat ()
59 .\"O returns \fIdest\fP.
60 .BR wcscat ()
61 は \fIdest\fP を返す。
62 .\"O .SH "CONFORMING TO"
63 .SH 準拠
64 C99.
65 .\"O .SH "SEE ALSO"
66 .SH 関連項目
67 .BR strcat (3),
68 .BR wcpcpy (3),
69 .BR wcscpy (3),
70 .BR wcsncat (3)