Penguin
Annotated edit history of wmemmove(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 WMEMMOVE
2 !!!WMEMMOVE
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 wmemmove - 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 __wmemmove__ function is the wide-character
24 equivalent of the __memmove__ function. It copies
25 ''n'' wide characters from the array starting at
26 ''src'' to the array starting at ''dest''. The arrays
27 may overlap.
28
29
30 The programmer must ensure that there is room for at least
31 ''n'' wide characters at ''dest''.
32 !!RETURN VALUE
33
34
35 __wmemmove__ returns ''dest''.
36 !!CONFORMING TO
37
38
39 ISO/ANSI C, UNIX98
40 !!SEE ALSO
41
42
43 memmove(3), wmemcpy(3)
44 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.