changed some functions to set no error upon failure in bigint.c
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
12
lib/hcl.h
12
lib/hcl.h
@ -2961,12 +2961,24 @@ HCL_EXPORT hcl_oop_t hcl_ooitoint (
|
||||
hcl_ooi_t i
|
||||
);
|
||||
|
||||
HCL_EXPORT int hcl_inttooow_noseterr (
|
||||
hcl_t* hcl,
|
||||
hcl_oop_t x,
|
||||
hcl_oow_t* w
|
||||
);
|
||||
|
||||
HCL_EXPORT int hcl_inttooow (
|
||||
hcl_t* hcl,
|
||||
hcl_oop_t x,
|
||||
hcl_oow_t* w
|
||||
);
|
||||
|
||||
HCL_EXPORT int hcl_inttoooi_noseterr (
|
||||
hcl_t* hcl,
|
||||
hcl_oop_t x,
|
||||
hcl_ooi_t* i
|
||||
);
|
||||
|
||||
HCL_EXPORT int hcl_inttoooi (
|
||||
hcl_t* hcl,
|
||||
hcl_oop_t x,
|
||||
|
Reference in New Issue
Block a user