OSDN Git Service

Update README
[linuxjm/LDP_man-pages.git] / original / man3 / gcvt.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" References consulted:
26 .\"     Linux libc source code
27 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\"     386BSD man pages
29 .\" Modified Sat Jul 24 19:32:25 1993 by Rik Faith (faith@cs.unc.edu)
30 .TH GCVT 3 2014-05-28 "" "Linux Programmer's Manual"
31 .SH NAME
32 gcvt \- convert a floating-point number to a string
33 .SH SYNOPSIS
34 .nf
35 .B #include <stdlib.h>
36 .sp
37 .BI "char *gcvt(double " number ", int " ndigit ", char *" buf );
38 .fi
39 .sp
40 .in -4n
41 Feature Test Macro Requirements for glibc (see
42 .BR feature_test_macros (7)):
43 .in
44 .sp
45 .BR gcvt ():
46 .ad l
47 .PD 0
48 .RS 4
49 .TP 4
50 Since glibc 2.12:
51 .nf
52 _SVID_SOURCE ||
53     (_XOPEN_SOURCE\ >=\ 500 ||
54         _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED) &&
55     !(_POSIX_C_SOURCE\ >=\ 200112L || _XOPEN_SOURCE\ >=\ 600)
56 .fi
57 .TP 4
58 Before glibc 2.12:
59 _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 500 ||
60 _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED
61 .RE
62 .PD
63 .ad b
64 .SH DESCRIPTION
65 The
66 .BR gcvt ()
67 function converts \fInumber\fP to a minimal length null-terminated
68 ASCII string and stores the result in \fIbuf\fP.
69 It produces \fIndigit\fP significant digits in either
70 .BR printf (3)
71 F format or E format.
72 .SH RETURN VALUE
73 The
74 .BR gcvt ()
75 function returns the address of the string pointed to
76 by \fIbuf\fP.
77 .SH CONFORMING TO
78 Marked as LEGACY in POSIX.1-2001.
79 POSIX.1-2008 removes the specification of
80 .BR gcvt (),
81 recommending the use of
82 .BR sprintf (3)
83 instead (though
84 .BR snprintf (3)
85 may be preferable).
86 .SH SEE ALSO
87 .BR ecvt (3),
88 .BR fcvt (3),
89 .BR sprintf (3)
90 .SH COLOPHON
91 This page is part of release 3.79 of the Linux
92 .I man-pages
93 project.
94 A description of the project,
95 information about reporting bugs,
96 and the latest version of this page,
97 can be found at
98 \%http://www.kernel.org/doc/man\-pages/.