mirror of
https://gitlab.com/80486DX2-66/gists
synced 2024-11-08 18:02:23 +05:30
C: floatscan-experiment.c: wrap for 80 characters per line
This commit is contained in:
parent
3983e7f35d
commit
b6f79fadf5
@ -59,7 +59,8 @@ long double floatscan(const char* s, int prec);
|
||||
#define LONG_DOUBLE_TYPE 2
|
||||
|
||||
static long long scanexp(FILE *f, int pok);
|
||||
static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok);
|
||||
static long double decfloat(FILE *f, int c, int bits, int emin, int sign,
|
||||
int pok);
|
||||
static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok);
|
||||
long double __floatscan(FILE *f, int prec, int pok);
|
||||
/* wrapping code --- end */
|
||||
@ -116,7 +117,8 @@ static long long scanexp(FILE *f, int pok)
|
||||
}
|
||||
|
||||
|
||||
static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok)
|
||||
static long double decfloat(FILE *f, int c, int bits, int emin, int sign,
|
||||
int pok)
|
||||
{
|
||||
uint32_t x[KMAX];
|
||||
static const uint32_t th[] = { LD_B1B_MAX };
|
||||
|
Loading…
Reference in New Issue
Block a user