]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/wcscat.3
pow.3: Minor tweak to BUGS
[thirdparty/man-pages.git] / man3 / wcscat.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 .\" ISO/IEC 9899:1999
15 .\"
16 .TH WCSCAT 3 2019-03-06 "GNU" "Linux Programmer's Manual"
17 .SH NAME
18 wcscat \- concatenate two wide-character strings
19 .SH SYNOPSIS
20 .nf
21 .B #include <wchar.h>
22 .PP
23 .BI "wchar_t *wcscat(wchar_t *" dest ", const wchar_t *" src );
24 .fi
25 .SH DESCRIPTION
26 The
27 .BR wcscat ()
28 function is the wide-character equivalent
29 of the
30 .BR strcat (3)
31 function.
32 It copies the wide-character string pointed to by
33 .IR src ,
34 including the terminating null wide character (L\(aq\e0\(aq),
35 to the end of the wide-character string pointed to by
36 .IR dest .
37 .PP
38 The strings may not overlap.
39 .PP
40 The programmer must ensure that there is room for at least
41 .IR wcslen(dest) + wcslen(src) +1
42 wide characters at
43 .IR dest .
44 .SH RETURN VALUE
45 .BR wcscat ()
46 returns
47 .IR dest .
48 .SH ATTRIBUTES
49 For an explanation of the terms used in this section, see
50 .BR attributes (7).
51 .TS
52 allbox;
53 lb lb lb
54 l l l.
55 Interface Attribute Value
56 T{
57 .BR wcscat ()
58 T} Thread safety MT-Safe
59 .TE
60 .SH CONFORMING TO
61 POSIX.1-2001, POSIX.1-2008, C99.
62 .SH SEE ALSO
63 .BR strcat (3),
64 .BR wcpcpy (3),
65 .BR wcscpy (3),
66 .BR wcsncat (3)