]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/wmemmove.3
epoll_create.2, epoll_ctl.2, epoll_wait.2, eventfd.2, ioprio_set.2, signalfd.2, spu_c...
[thirdparty/man-pages.git] / man3 / wmemmove.3
CommitLineData
fea681da
MK
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/
008f1ecc 11.\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
fea681da
MK
12.\" ISO/IEC 9899:1999
13.\"
14.TH WMEMMOVE 3 1999-07-25 "GNU" "Linux Programmer's Manual"
15.SH NAME
16wmemmove \- 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
60a90ecd
MK
24The
25.BR wmemmove ()
26function is the wide-character equivalent of the
27.BR memmove (3)
28function.
c13182ef
MK
29It copies \fIn\fP wide characters from the array
30starting at \fIsrc\fP to the array starting at \fIdest\fP.
31The arrays may
fea681da
MK
32overlap.
33.PP
34The programmer must ensure that there is room for at least \fIn\fP wide
35characters at \fIdest\fP.
47297adb 36.SH RETURN VALUE
60a90ecd
MK
37.BR wmemmove ()
38returns \fIdest\fP.
47297adb 39.SH CONFORMING TO
68e1685c 40C99.
47297adb 41.SH SEE ALSO
fea681da
MK
42.BR memmove (3),
43.BR wmemcpy (3)