| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 | /****************************************************************The author of this software is David M. Gay.Copyright (C) 1998 by Lucent TechnologiesAll Rights ReservedPermission to use, copy, modify, and distribute this software andits documentation for any purpose and without fee is herebygranted, provided that the above copyright notice appear in allcopies and that both that the copyright notice and thispermission notice and warranty disclaimer appear in supportingdocumentation, and that the name of Lucent or any of its entitiesnot be used in advertising or publicity pertaining todistribution of the software without specific, written priorpermission.LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANYSPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGESWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHERIN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OFTHIS SOFTWARE.****************************************************************//* Please send bug reports to David M. Gay (dmg at acm dot org, * with " at " changed at "@" and " dot " changed to ".").	*/#ifndef GDTOA_H_INCLUDED#define GDTOA_H_INCLUDED#include "arith.h"#include <stddef.h> /* for size_t */#ifndef Long#define Long int#endif#ifndef ULongtypedef unsigned Long ULong;#endif#ifndef UShorttypedef unsigned short UShort;#endif#ifndef ANSI#ifdef KR_headers#define ANSI(x) ()#define Void /*nothing*/#else#define ANSI(x) x#define Void void#endif#endif /* ANSI */#ifndef CONST#ifdef KR_headers#define CONST /* blank */#else#define CONST const#endif#endif /* CONST */ enum {	/* return values from strtodg */	STRTOG_Zero	= 0x000,	STRTOG_Normal	= 0x001,	STRTOG_Denormal	= 0x002,	STRTOG_Infinite	= 0x003,	STRTOG_NaN	= 0x004,	STRTOG_NaNbits	= 0x005,	STRTOG_NoNumber	= 0x006,	STRTOG_NoMemory = 0x007,	STRTOG_Retmask	= 0x00f,	/* The following may be or-ed into one of the above values. */	STRTOG_Inexlo	= 0x010, /* returned result rounded toward zero */	STRTOG_Inexhi	= 0x020, /* returned result rounded away from zero */	STRTOG_Inexact	= 0x030,	STRTOG_Underflow= 0x040,	STRTOG_Overflow	= 0x080,	STRTOG_Neg	= 0x100 /* does not affect STRTOG_Inexlo or STRTOG_Inexhi */	}; typedef structFPI {	int nbits;	int emin;	int emax;	int rounding;	int sudden_underflow;	} FPI;enum {	/* FPI.rounding values: same as FLT_ROUNDS */	FPI_Round_zero = 0,	FPI_Round_near = 1,	FPI_Round_up = 2,	FPI_Round_down = 3	};#ifdef __cplusplusextern "C" {#endifextern char* __dtoa  ANSI((double d, int mode, int ndigits, int *decpt,			int *sign, char **rve));extern char* __gdtoa ANSI((FPI *fpi, int be, ULong *bits, int *kindp,			int mode, int ndigits, int *decpt, char **rve));extern void __freedtoa ANSI((char*));extern int __strtodg ANSI((CONST char*, char**, FPI*, Long*, ULong*));extern int	__strtorx  ANSI((CONST char*, char**, int, void*));#ifdef __cplusplus}#endif#endif /* GDTOA_H_INCLUDED */
 |