OSDN Git Service

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