OSDN Git Service

8503c994193f79d44fb6cd8ef8723bfd5e6be200
[linuxjm/LDP_man-pages.git] / draft / 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 .\" About this Japanese page, please contact to JM Project <JM@linux.or.jp>
15 .\" Translated Tue Oct 26 00:51:13 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\"
18 .TH WMEMMOVE 3 1999-07-25 "GNU" "Linux Programmer's Manual"
19 .\"O .SH NAME
20 .SH 名前
21 .\"O wmemmove \- copy an array of wide-characters
22 wmemmove \-ワイド文字の配列をコピーする
23 .\"O .SH SYNOPSIS
24 .SH 書式
25 .nf
26 .B #include <wchar.h>
27 .sp
28 .BI "wchar_t *wmemmove(wchar_t *" dest ", const wchar_t *" src ", size_t " n );
29 .fi
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The
33 .\"O .BR wmemmove ()
34 .\"O function is the wide-character equivalent of the
35 .\"O .BR memmove (3)
36 .\"O function.
37 .\"O It copies \fIn\fP wide characters from the array
38 .\"O starting at \fIsrc\fP to the array starting at \fIdest\fP.
39 .\"O The arrays may
40 .\"O overlap.
41 .BR wmemmove ()
42 関数は、
43 .BR memmove (3)
44 関数に対応するワイド文字関数であ
45 る。この関数は \fIsrc\fP を先頭とする配列から \fIdest\fP を先頭とする
46 配列に \fIn\fP 個のワイド文字をコピーする。2 つの配列は重なっていても
47 構わない。
48 .PP
49 .\"O The programmer must ensure that there is room for at least \fIn\fP wide
50 .\"O characters at \fIdest\fP.
51 プログラマは、少なくとも \fIn\fP 個のワイド文字が入る領域を \fIdest\fP
52 に確保しなければならない。
53 .\"O .SH "RETURN VALUE"
54 .SH 返り値
55 .\"O .BR wmemmove ()
56 .\"O returns \fIdest\fP.
57 .BR wmemmove ()
58 は \fIdest\fP を返す。
59 .\"O .SH "CONFORMING TO"
60 .SH 準拠
61 C99.
62 .\"O .SH "SEE ALSO"
63 .SH 関連項目
64 .BR memmove (3),
65 .BR wmemcpy (3)