Penguin
Annotated edit history of wcpcpy(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 WCPCPY
2 !!!WCPCPY
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 wcpcpy - copy a wide character string, returning a pointer to its end
14 !!SYNOPSIS
15
16
17 __#include
18 __''dest''__, const wchar_t *__''src''__);
19 __
20 !!DESCRIPTION
21
22
23 The __wcpcpy__ function is the wide-character equivalent
24 of the __stpcpy__ function. It copies the wide character
25 string pointed to by ''src'', including the terminating
26 L'0' character, to the array pointed to by
27 ''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(src)+1'' wide characters at
35 ''dest''.
36 !!RETURN VALUE
37
38
39 __wcpcpy__ returns a pointer to the end of the
40 wide-character string ''dest'', that is, a pointer to the
41 terminating L'0' character.
42 !!CONFORMING TO
43
44
45 This function is a GNU extension.
46 !!SEE ALSO
47
48
49 strcpy(3), wcscpy(3)
50 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.