1988-04-07 11:40:46 +00:00
|
|
|
/*
|
|
|
|
(c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Header$ */
|
|
|
|
|
1988-04-07 10:57:49 +00:00
|
|
|
/*
|
1988-07-25 10:46:15 +00:00
|
|
|
SEPERATE DOUBLE INTO EXPONENT AND FRACTION (FEF 8)
|
1988-04-07 10:57:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "FP_types.h"
|
|
|
|
|
|
|
|
struct fef8_returns {
|
1988-04-14 18:06:47 +00:00
|
|
|
int e;
|
1988-04-07 10:57:49 +00:00
|
|
|
_double f;
|
|
|
|
};
|
|
|
|
|
1989-07-25 14:21:09 +00:00
|
|
|
fef8(r, s1)
|
1988-04-07 10:57:49 +00:00
|
|
|
_double s1;
|
1989-07-25 14:21:09 +00:00
|
|
|
struct fef8_returns *r;
|
1988-04-07 10:57:49 +00:00
|
|
|
{
|
|
|
|
EXTEND buf;
|
1989-07-25 14:21:09 +00:00
|
|
|
register struct fef8_returns *p = r; /* make copy, r might refer
|
|
|
|
to itself (see table)
|
|
|
|
*/
|
1988-04-07 10:57:49 +00:00
|
|
|
|
|
|
|
extend(&s1,&buf,sizeof(_double));
|
1989-07-25 14:21:09 +00:00
|
|
|
p->e = buf.exp + 1;
|
|
|
|
buf.exp = -1;
|
|
|
|
compact(&buf,&p->f,sizeof(_double));
|
1988-04-07 10:57:49 +00:00
|
|
|
}
|