OSDN Git Service

d85cba976e448fc88b995a9da8a9f54a982a979c
[linuxjm/LDP_man-pages.git] / draft / man3 / wmemset.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:32 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\"
18 .TH WMEMSET 3 1999-07-25 "GNU" "Linux Programmer's Manual"
19 .\"O .SH NAME
20 .SH 名前
21 .\"O wmemset \- fill an array of wide-characters with a constant wide character
22 wmemset \- ワイド文字の配列を定数のワイド文字で埋める
23 .\"O .SH SYNOPSIS
24 .SH 書式
25 .nf
26 .B #include <wchar.h>
27 .sp
28 .BI "wchar_t *wmemset(wchar_t *" wcs ", wchar_t " wc ", size_t " n );
29 .fi
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The
33 .\"O .BR wmemset ()
34 .\"O function is the wide-character equivalent of the
35 .\"O .BR memset (3)
36 .\"O function.
37 .\"O It fills the array of \fIn\fP wide-characters starting at \fIwcs\fP
38 .\"O with \fIn\fP copies of the wide character \fIwc\fP.
39 .BR wmemset ()
40 関数は、
41 .BR memset (3)
42 関数に対応するワイド文字関数である。
43 この関数は、\fBmemset\fP を先頭とする \fIn\fP 個のワイド文字の配列を、
44 ワイド文字 \fIwc\fP の \fIn\fP 個のコピーで埋める。
45 .\"O .SH "RETURN VALUE"
46 .SH 返り値
47 .\"O .BR wmemset ()
48 .\"O returns \fIwcs\fP.
49 .BR wmemset ()
50 は \fIwcs\fP を返す。
51 .\"O .SH "CONFORMING TO"
52 .SH 準拠
53 C99.
54 .\"O .SH "SEE ALSO"
55 .SH 関連項目
56 .BR memset (3)