jq is now willing to put up to 15 zeros after an integer before
moving to scientific notation.
while((*b++ = *s++));
goto done0;
}
- if (decpt <= -4 || decpt > se - s + 5) {
+ if (decpt <= -4 || decpt > se - s + 15) {
*b++ = *s++;
if (*s) {
*b++ = '.';
char* jvp_dtoa(struct dtoa_context* C, double dd, int mode, int ndigits, int *decpt, int *sign, char **rve);
void jvp_freedtoa(struct dtoa_context* C, char *s);
-#define JVP_DTOA_FMT_MAX_LEN 32
+#define JVP_DTOA_FMT_MAX_LEN 64
char* jvp_dtoa_fmt(struct dtoa_context* C, register char *b, double x);
#endif