ack/lang/pc/libpc/rdr.c

78 lines
1.2 KiB
C
Raw Permalink Normal View History

1994-06-24 14:02:31 +00:00
/* $Id$ */
1984-07-20 10:44:57 +00:00
/*
* (c) copyright 1983 by the Vrije Universiteit, Amsterdam, The Netherlands.
*
* This product is part of the Amsterdam Compiler Kit.
*
* Permission to use, sell, duplicate or disclose this software must be
* obtained in writing. Requests for such permissions may be sent to
*
* Dr. Andrew S. Tanenbaum
* Wiskundig Seminarium
* Vrije Universiteit
* Postbox 7161
* 1007 MC Amsterdam
* The Netherlands
*
*/
/* Author: J.W. Stevenson */
2018-06-17 20:30:27 +00:00
#include "pc.h"
1984-07-20 10:44:57 +00:00
2018-06-17 14:11:29 +00:00
#define BIG 1e17
1984-07-20 10:44:57 +00:00
2018-06-17 14:11:29 +00:00
static double r;
static int pow10;
1984-07-20 10:44:57 +00:00
2018-06-17 20:30:27 +00:00
static void dig(int ch)
2018-06-17 14:11:29 +00:00
{
1984-07-20 10:44:57 +00:00
2018-06-17 14:11:29 +00:00
if (r > BIG)
1984-07-20 10:44:57 +00:00
pow10++;
else
2018-06-17 14:11:29 +00:00
r = r * 10.0 + ch;
1984-07-20 10:44:57 +00:00
}
2018-06-17 20:30:27 +00:00
double _rdr(struct file* f)
2018-06-17 14:11:29 +00:00
{
int i;
double e;
int is_signed, ch;
1984-07-20 10:44:57 +00:00
r = 0;
pow10 = 0;
_rf(f);
_skipsp(f);
1990-11-06 13:02:55 +00:00
is_signed = _getsig(f);
1984-07-20 10:44:57 +00:00
ch = _fstdig(f);
do
dig(ch);
while ((ch = _nxtdig(f)) >= 0);
2018-06-17 14:11:29 +00:00
if (*f->ptr == '.')
{
1984-07-20 10:44:57 +00:00
_incpt(f);
ch = _fstdig(f);
2018-06-17 14:11:29 +00:00
do
{
1984-07-20 10:44:57 +00:00
dig(ch);
pow10--;
} while ((ch = _nxtdig(f)) >= 0);
}
2018-06-17 14:11:29 +00:00
if ((*f->ptr == 'e') || (*f->ptr == 'E'))
{
1984-07-20 10:44:57 +00:00
_incpt(f);
pow10 += _getint(f);
}
if ((i = pow10) < 0)
i = -i;
e = 1.0;
while (--i >= 0)
e *= 10.0;
2018-06-17 14:11:29 +00:00
if (pow10 < 0)
1984-07-20 10:44:57 +00:00
r /= e;
else
r *= e;
2018-06-17 14:11:29 +00:00
return (is_signed ? -r : r);
1984-07-20 10:44:57 +00:00
}