89
90
char *res, *src, *end, *dst= to;
90
91
char buf[DTOA_BUFF_SIZE];
91
92
assert(precision >= 0 && precision < NOT_FIXED_DEC && to != NULL);
93
94
res= dtoa(x, 5, precision, &decpt, &sign, &end, buf, sizeof(buf));
95
96
if (decpt == DTOA_OVERFLOW)