Matched ansi_fp.c (US) (#550)

This commit is contained in:
mrshigure 2025-01-28 11:33:09 -08:00 committed by GitHub
parent 2309176a5c
commit 6347294c14
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 396 additions and 12 deletions

View file

@ -22,15 +22,6 @@ typedef struct decform {
short digits;
} decform;
/* void __ull2dec(decimal*, u64);
void __timesdec(decimal*, const decimal*, const decimal*);
void __str2dec(decimal*, const char*, short);
void __two_exp(decimal*, s16);
BOOL __equals_dec(const decimal*, const decimal*);
BOOL __less_dec(const decimal*, const decimal*);
void __minus_dec(decimal*, const decimal*, const decimal*);
void __num2dec_internal(decimal*, f64);
void __num2dec(const decform*, f64, decimal*);
f64 __dec2num(const decimal*); */
void __num2dec(const decform* form, double x, decimal* d);
#endif