OSDN Git Service

Convert release and draft pages to UTF-8.
[linuxjm/jm.git] / manual / LDP_man-pages / draft / man3 / qecvt.3
1 .\" Copyright (C) 2002 Andries Brouwer <aeb@cwi.nl>
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" This replaces an earlier man page written by Walter Harms
24 .\" <walter.harms@informatik.uni-oldenburg.de>.
25 .\"
26 .\" Japanese Version Copyright (c) 2002 Akihiro MOTOKI
27 .\"         all rights reserved.
28 .\" Translated Sun Sep 22 10:42:23 2002
29 .\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
30 .\"
31 .TH QECVT 3  2010-09-20 "GNU" "Linux Programmer's Manual"
32 .\"O .SH NAME
33 .SH 名前
34 .\"O qecvt, qfcvt, qgcvt \- convert a floating-point number to a string
35 qecvt, qfcvt, qgcvt \- 浮動小数点数の文字列への変換
36 .\"O .SH SYNOPSIS
37 .SH 書式
38 .B #include <stdlib.h>
39 .sp
40 .BI "char *qecvt(long double " number ", int " ndigits ", int *" decpt ,
41 .BI "int *" sign );
42 .sp
43 .BI "char *qfcvt(long double " number ", int " ndigits ", int *" decpt ,
44 .BI "int *" sign );
45 .sp
46 .BI "char *qgcvt(long double " number ", int " ndigit ", char *" buf );
47 .sp
48 .in -4n
49 .\"O Feature Test Macro Requirements for glibc (see
50 .\"O .BR feature_test_macros (7)):
51 glibc 向けの機能検査マクロの要件
52 .RB ( feature_test_macros (7)
53 参照):
54 .in
55 .sp
56 .ad l
57 .BR qecvt (),
58 .BR qfcvt (),
59 .BR qgcvt ():
60 _SVID_SOURCE
61 .ad b
62 .\"O .SH DESCRIPTION
63 .SH 説明
64 .\"O The functions
65 .\"O .BR qecvt (),
66 .\"O .BR qfcvt ()
67 .\"O and
68 .\"O .BR qgcvt ()
69 .\"O are identical to
70 .\"O .BR ecvt (3),
71 .\"O .BR fcvt (3)
72 .\"O and
73 .\"O .BR gcvt (3)
74 .\"O respectively, except that they use a
75 .\"O .I "long double"
76 .\"O argument
77 .\"O .IR number .
78 .\"O See
79 .\"O .BR ecvt (3)
80 .\"O and
81 .\"O .BR gcvt (3).
82 関数
83 .BR qecvt (),
84 .BR qfcvt (),
85 .BR  qgcvt ()
86 は、それぞれ
87 .BR ecvt (3),
88 .BR fcvt (3),
89 .BR gcvt (3)
90 と同じである。
91 引き数
92 .I number
93
94 .I "long double"
95 型である点だけが異なる。
96 .\"O .SH "CONFORMING TO"
97 .SH 準拠
98 SVr4.
99 .\"O Not seen in most common UNIX implementations,
100 .\"O but occurs in SunOS.
101 .\"O Not supported by libc4 and libc5.
102 .\"O Supported by glibc.
103 多くの一般的な UNIX には実装されていないが、SunOS には実装されている。
104 libc4 と libc5 ではサポートされていないが、
105 glibc ではサポートされている。
106 .\"O .SH NOTES
107 .SH 注意
108 .\"O These functions are obsolete.
109 .\"O Instead,
110 .\"O .BR sprintf (3)
111 .\"O is recommended.
112 これらの関数は廃止された。代わりに
113 .BR sprintf (3)
114 の使用を推奨する。
115 .\"O .SH "SEE ALSO"
116 .SH 関連項目
117 .BR ecvt (3),
118 .BR ecvt_r (3),
119 .BR gcvt (3),
120 .BR sprintf (3)