Penguin
Annotated edit history of wmemcpy(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 WMEMCPY
2 !!!WMEMCPY
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 wmemcpy - copy an array of wide-characters
14 !!SYNOPSIS
15
16
17 __#include
18 __''dest''__, const wchar_t *__''src''__, size_t__ ''n''__);
19 __
20 !!DESCRIPTION
21
22
23 The __wmemcpy__ function is the wide-character equivalent
24 of the __memcpy__ function. It copies ''n'' wide
25 characters from the array starting at ''src'' to the
26 array starting at ''dest''.
27
28
29 The arrays may not overlap; use wmemmove(3) to copy
30 between overlapping arrays.
31
32
33 The programmer must ensure that there is room for at least
34 ''n'' wide characters at ''dest''.
35 !!RETURN VALUE
36
37
38 __wmemcpy__ returns ''dest''.
39 !!CONFORMING TO
40
41
42 ISO/ANSI C, UNIX98
43 !!SEE ALSO
44
45
46 memcpy(3), wmemmove(3),
47 wcscpy(3)
48 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.