OSDN Git Service

Import translated manuals from JM CVS Repository.
[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  2007-07-26 "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 || _BSD_SOURCE || _XOPEN_SOURCE\ >=\ 500
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)