We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35c125d commit 79f83f1Copy full SHA for 79f83f1
dtoa.h
@@ -21,6 +21,8 @@
21
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
* THE SOFTWARE.
23
*/
24
+#ifndef DTOA_H
25
+#define DTOA_H
26
27
//#define JS_DTOA_DUMP_STATS
28
@@ -81,3 +83,5 @@ size_t u64toa(char *buf, uint64_t n);
81
83
size_t i64toa(char *buf, int64_t n);
82
84
size_t u64toa_radix(char *buf, uint64_t n, unsigned int radix);
85
size_t i64toa_radix(char *buf, int64_t n, unsigned int radix);
86
+
87
+#endif /* DTOA_H */
0 commit comments