started adding fpdec calculation functions

This commit is contained in:
2018-03-28 16:40:42 +00:00
parent 3a30ffda7b
commit 116512ae9d
8 changed files with 190 additions and 19 deletions

View File

@ -831,7 +831,7 @@ int hcl_utf8toucs (
);
/* ========================================================================= */
/* bigint.c TODO: remove bigint */
/* bigint.c */
/* ========================================================================= */
int hcl_isint (
hcl_t* hcl,
@ -963,6 +963,20 @@ hcl_oop_t hcl_inttostr (
int ngc
);
/* ========================================================================= */
/* number.c */
/* ========================================================================= */
hcl_oop_t hcl_addnums (
hcl_t* hcl,
hcl_oop_t x,
hcl_oop_t y
);
hcl_oop_t hcl_subnums (
hcl_t* hcl,
hcl_oop_t x,
hcl_oop_t y
);
/* ========================================================================= */
/* comp.c */
/* ========================================================================= */