OSDN Git Service

(split) LDP man-pages の original/ を v3.29 に更新。
[linuxjm/LDP_man-pages.git] / original / man3 / wmemmove.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
7 .\"
8 .\" References consulted:
9 .\"   GNU glibc-2 source code and manual
10 .\"   Dinkumware C library reference http://www.dinkumware.com/
11 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
12 .\"   ISO/IEC 9899:1999
13 .\"
14 .TH WMEMMOVE 3  1999-07-25 "GNU" "Linux Programmer's Manual"
15 .SH NAME
16 wmemmove \- copy an array of wide-characters
17 .SH SYNOPSIS
18 .nf
19 .B #include <wchar.h>
20 .sp
21 .BI "wchar_t *wmemmove(wchar_t *" dest ", const wchar_t *" src ", size_t " n );
22 .fi
23 .SH DESCRIPTION
24 The
25 .BR wmemmove ()
26 function is the wide-character equivalent of the
27 .BR memmove (3)
28 function.
29 It copies \fIn\fP wide characters from the array
30 starting at \fIsrc\fP to the array starting at \fIdest\fP.
31 The arrays may
32 overlap.
33 .PP
34 The programmer must ensure that there is room for at least \fIn\fP wide
35 characters at \fIdest\fP.
36 .SH "RETURN VALUE"
37 .BR wmemmove ()
38 returns \fIdest\fP.
39 .SH "CONFORMING TO"
40 C99.
41 .SH "SEE ALSO"
42 .BR memmove (3),
43 .BR wmemcpy (3)