Penguin
Annotated edit history of wcscat(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 WCSCAT
2 !!!WCSCAT
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 wcscat - concatenate two wide-character strings
14 !!SYNOPSIS
15
16
17 __#include
18 __''dest''__, const wchar_t *__''src''__);
19 __
20 !!DESCRIPTION
21
22
23 The __wcscat__ function is the wide-character equivalent
24 of the __strcat__ function. It copies the wide-character
25 string pointed to by ''src'', including the terminating
26 L'0' character, to the end of the wide-character string
27 pointed to by ''dest''.
28
29
30 The strings may not overlap.
31
32
33 The programmer must ensure that there is room for at least
34 ''wcslen(dest)+wcslen(src)+1'' wide characters at
35 ''dest''.
36 !!RETURN VALUE
37
38
39 __wcscat__ returns ''dest''.
40 !!CONFORMING TO
41
42
43 ISO/ANSI C, UNIX98
44 !!SEE ALSO
45
46
47 strcat(3), wcsncat(3), wcscpy(3),
48 wcpcpy(3)
49 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.