mirror of
https://gitlab.com/80486DX2-66/gists
synced 2024-12-27 14:50: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
|
#define LONG_DOUBLE_TYPE 2
|
||||||
|
|
||||||
static long long scanexp(FILE *f, int pok);
|
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);
|
static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok);
|
||||||
long double __floatscan(FILE *f, int prec, int pok);
|
long double __floatscan(FILE *f, int prec, int pok);
|
||||||
/* wrapping code --- end */
|
/* 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];
|
uint32_t x[KMAX];
|
||||||
static const uint32_t th[] = { LD_B1B_MAX };
|
static const uint32_t th[] = { LD_B1B_MAX };
|
||||||
|
Loading…
Reference in New Issue
Block a user