Penguin
Annotated edit history of wcsncat(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 WCSNCAT
2 !!!WCSNCAT
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 wcsncat - concatenate two wide-character strings
14 !!SYNOPSIS
15
16
17 __#include
18 __''dest''__, const wchar_t *__''src''__, size_t__ ''n''__);
19 __
20 !!DESCRIPTION
21
22
23 The __wcsncat__ function is the wide-character equivalent
24 of the __strncat__ function. It copies at most ''n''
25 wide characters from the wide-character string pointed to by
26 ''src'' to the end of the wide-character string pointed
27 to by ''dest'', and adds a terminating L'0'
28 character.
29
30
31 The strings may not overlap.
32
33
34 The programmer must ensure that there is room for at least
35 ''wcslen(dest)+n+1'' wide characters at
36 ''dest''.
37 !!RETURN VALUE
38
39
40 __wcsncat__ returns ''dest''.
41 !!CONFORMING TO
42
43
44 ISO/ANSI C, UNIX98
45 !!SEE ALSO
46
47
48 strncat(3), wcscat(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.