OSDN Git Service

(split) LDP_man-pages: release ioctl.2 [JM:00378]
[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 1999-07-25 "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 L\(aq\\0\(aq character,
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 ¤¬»Ø¤¹¥ï¥¤¥Éʸ»úʸ»úÎó(½ªÃ¼¤Î L\(aq\\0\(aq Ê¸»ú¤ò´Þ¤à)¤ò¡¢
46 \fIdest\fP ¤¬»Ø¤¹¥ï¥¤¥Éʸ»úʸ»úÎó¤ÎºÇ¸å¤Ë¥³¥Ô¡¼¤¹¤ë¡£
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)+wcslen(src)+1\fP wide characters at \fIdest\fP.
53 ¥×¥í¥°¥é¥Þ¤Ï¡¢¾¯¤Ê¤¯¤È¤â \fIwcslen(dest)+wcslen(src)+1\fP Ê¸»ú¤Î
54 ¥ï¥¤¥Éʸ»ú¤¬Æþ¤ë¤À¤±¤ÎÎΰè¤ò \fIdest\fP ¤ËÂФ·¤Æ³ÎÊݤ·¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤¡£
55 .\"O .SH "RETURN VALUE"
56 .SH ÊÖ¤êÃÍ
57 .\"O .BR wcscat ()
58 .\"O returns \fIdest\fP.
59 .BR wcscat ()
60 ¤Ï \fIdest\fP ¤òÊÖ¤¹¡£
61 .\"O .SH "CONFORMING TO"
62 .SH ½àµò
63 C99.
64 .\"O .SH "SEE ALSO"
65 .SH ´ØÏ¢¹àÌÜ
66 .BR strcat (3),
67 .BR wcpcpy (3),
68 .BR wcscpy (3),
69 .BR wcsncat (3)