1
0
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:
Intel A80486DX2-66 2024-03-08 15:03:32 +03:00
parent 3983e7f35d
commit b6f79fadf5
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -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 };