started adding fpdec calculation functions
This commit is contained in:
@ -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 */
|
||||
/* ========================================================================= */
|
||||
|
Reference in New Issue
Block a user