File: wmemmove.3

package info (click to toggle)
manpages-fr 1.58.1-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 10,104 kB
  • ctags: 4
  • sloc: makefile: 106; sh: 8
file content (39 lines) | stat: -rw-r--r-- 1,446 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
.\"
.\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as
.\" published by the Free Software Foundation; either version 2 of
.\" the License, or (at your option) any later version.
.\"
.\" References consulted:
.\"   GNU glibc-2 source code and manual
.\"   Dinkumware C library reference http://www.dinkumware.com/
.\"   OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html
.\"   ISO/IEC 9899:1999
.\" MJ 21/07/2003 LDP-1.56
.TH WMEMMOVE 3 "21 juillet 2003" LDP "Manuel du programmeur Linux"
.SH NOM
wmemmove \- Copier un tableau de caractres larges.
.SH SYNOPSIS
.nf
.B #include <wchar.h>
.sp
.BI "wchar_t *wmemmove (wchar_t *" dest ", const wchar_t *" src ", size_t " n );
.fi
.SH DESCRIPTION
La fonction \fBwmemmove\fP est l'quivalent pour les caractres larges de la
fonction \fBmemmove\fP. Elle copie \fIn\fP caractres larges depuis le tableau
point par \fIsrc\fP dans le tableau point par \fIdest\fP. Les tableaux
peuvent se recouvrir.
.PP
Le programmeur doit s'assurer qu'il y a suffisamment d'espace
pour au moins \fIn\fP caractres larges dans \fIdest\fP.
.SH "VALEUR RENVOYE"
\fBwmemmove\fP renvoie \fIdest\fP.
.SH "CONFORME A"
ISO/ANSI C, UNIX98
.SH "VOIR AUSSI"
.BR memmove (3),
.BR wmemcpy (3)
.SH TRADUCTION
.RI "Thierry Vignaud <" tvignaud@mandrakesoft.com ">, 2000"