Penguin
Annotated edit history of wcscpy(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 WCSCPY
2 !!!WCSCPY
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 wcscpy - copy a wide character string
14 !!SYNOPSIS
15
16
17 __#include
18 __''dest''__, const wchar_t *__''src''__);
19 __
20 !!DESCRIPTION
21
22
23 The __wcscpy__ function is the wide-character equivalent
24 of the __strcpy__ 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 __wcscpy__ returns ''dest''.
40 !!CONFORMING TO
41
42
43 ISO/ANSI C, UNIX98
44 !!SEE ALSO
45
46
47 strcpy(3), wcpcpy(3), wcscat(3),
48 wcsdup(3), wmemcpy(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.