blob: 3877a062b76efb90006f765b8a59ca07e3cd2387 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 tw=80:
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef util_DoubleToString_h
#define util_DoubleToString_h
/*
* Public interface to portable double-precision floating point to string
* and back conversion package.
*/
struct DtoaState;
namespace js {
extern DtoaState* NewDtoaState();
extern void DestroyDtoaState(DtoaState* state);
} // namespace js
/* Maximum number of characters (including trailing null) that a DTOSTR_STANDARD
* or DTOSTR_STANDARD_EXPONENTIAL conversion can produce. This maximum is
* reached for a number like -0.0000012345678901234567. */
#define DTOSTR_STANDARD_BUFFER_SIZE 26
/*
* DO NOT USE THIS FUNCTION IF YOU CAN AVOID IT. js::NumberToCString() is a
* better function to use.
*
* Convert d to a string in the given base. The integral part of d will be
* printed exactly in that base, regardless of how large it is, because there
* is no exponential notation for non-base-ten numbers. The fractional part
* will be rounded to as few digits as possible while still preserving the
* round-trip property (analogous to that of printing decimal numbers). In
* other words, if one were to read the resulting string in via a hypothetical
* base-number-reading routine that rounds to the nearest IEEE double (and to
* an even significand if there are two equally near doubles), then the result
* would equal d (except for -0.0, which converts to "0", and NaN, which is
* not equal to itself).
*
* Return nullptr if out of memory. If the result is not nullptr, it must be
* released via js_free().
*/
char* js_dtobasestr(DtoaState* state, int base, double d);
#endif /* util_DoubleToString_h */
|