moved the inttostr conversion buffer into moo_t

This commit is contained in:
hyunghwan.chung
2018-02-17 13:32:30 +00:00
parent f0cd3472e7
commit 9531c6a7e8
3 changed files with 89 additions and 27 deletions

View File

@ -1338,6 +1338,21 @@ struct moo_t
int safe_ndigits;
moo_oow_t multiplier;
} bigint[37];
struct
{
struct
{
moo_uch_t* ptr;
moo_oow_t capa;
moo_oow_t len;
} xbuf;
struct
{
moo_liw_t* ptr;
moo_oow_t capa;
} t;
} inttostr;
/* == END BIGINT CONVERSION == */
moo_sbuf_t sbuf[64];