1 /* Compatibility functions for floating point formatting, reentrant versions.
2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
28 #define FLOAT_TYPE double
30 #define FLOAT_FMT_FLAG
31 #define FLOAT_NAME_EXT
34 #define APPEND(a, b) APPEND2 (a, b)
35 #define APPEND2(a, b) a##b
37 #define FLOOR APPEND(floor, FLOAT_NAME_EXT)
38 #define FABS APPEND(fabs, FLOAT_NAME_EXT)
39 #define LOG10 APPEND(log10, FLOAT_NAME_EXT)
40 #define EXP APPEND(exp, FLOAT_NAME_EXT)
44 APPEND (FUNC_PREFIX
, fcvt_r
) (value
, ndigit
, decpt
, sign
, buf
, len
)
46 int ndigit
, *decpt
, *sign
;
60 *sign
= signbit (value
) != 0;
65 n
= snprintf (buf
, len
, "%.*" FLOAT_FMT_FLAG
"f", ndigit
, value
);
70 while (i
< n
&& isdigit (buf
[i
]))
76 /* Value is Inf or NaN. */
85 while (i
< n
&& !isdigit (buf
[i
]));
86 memmove (&buf
[*decpt
], &buf
[i
], n
- i
);
87 buf
[n
- (i
- *decpt
)] = 0;
93 #define weak_extern2(name) weak_extern (name)
94 weak_extern2 (FLOOR
) weak_extern2 (LOG10
) weak_extern2 (FABS
)
98 APPEND (FUNC_PREFIX
, ecvt_r
) (value
, ndigit
, decpt
, sign
, buf
, len
)
100 int ndigit
, *decpt
, *sign
;
106 if (isfinite (value
) && value
!= 0.0)
108 FLOAT_TYPE (*log10_function
) (FLOAT_TYPE
) = &LOG10
;
112 /* Use the reasonable code if -lm is included. */
113 FLOAT_TYPE dexponent
;
114 dexponent
= FLOOR (LOG10 (FABS (value
)));
115 value
*= EXP (dexponent
* -M_LN10
);
116 exponent
= (int) dexponent
;
120 /* Slow code that doesn't require -lm functions. */
151 if (APPEND (FUNC_PREFIX
, fcvt_r
) (value
, ndigit
- 1, decpt
, sign
, buf
, len
))