added partial sqrt function

This commit is contained in:
2018-04-03 14:02:40 +00:00
parent 67c16596a8
commit d5097b998a
4 changed files with 101 additions and 1 deletions

View File

@ -940,6 +940,11 @@ hcl_oop_t hcl_leints (
hcl_oop_t y
);
hcl_oop_t hcl_sqrtint (
hcl_t* hcl,
hcl_oop_t x
);
hcl_oop_t hcl_strtoint (
hcl_t* hcl,
const hcl_ooch_t* str,
@ -1038,6 +1043,13 @@ hcl_oop_t hcl_nenums (
hcl_oop_t x,
hcl_oop_t y
);
hcl_oop_t hcl_sqrtnum (
hcl_t* hcl,
hcl_oop_t x
);
/* ========================================================================= */
/* comp.c */
/* ========================================================================= */