touched up stix_strtoint()

This commit is contained in:
hyunghwan.chung
2015-11-09 14:26:58 +00:00
parent 797fdc4c1f
commit df3f521220
8 changed files with 247 additions and 18 deletions

View File

@ -699,6 +699,14 @@ struct stix_t
stix_ooi_t ip;
/* == END EXECUTION REGISTERS == */
/* == BIGINT CONVERSION == */
struct
{
int safe_ndigits;
stix_oow_t multiplier;
} bigint[36];
/* == END BIGINT CONVERSION == */
#if defined(STIX_INCLUDE_COMPILER)
stix_compiler_t* c;
#endif