Deleted Added
full compact
gdtoa.h (165744) gdtoa.h (182709)
1/****************************************************************
2
3The author of this software is David M. Gay.
4
5Copyright (C) 1998 by Lucent Technologies
6All Rights Reserved
7
8Permission to use, copy, modify, and distribute this software and

--- 60 unchanged lines hidden (view full) ---

69 STRTOG_Infinite = 3,
70 STRTOG_NaN = 4,
71 STRTOG_NaNbits = 5,
72 STRTOG_NoNumber = 6,
73 STRTOG_Retmask = 7,
74
75 /* The following may be or-ed into one of the above values. */
76
1/****************************************************************
2
3The author of this software is David M. Gay.
4
5Copyright (C) 1998 by Lucent Technologies
6All Rights Reserved
7
8Permission to use, copy, modify, and distribute this software and

--- 60 unchanged lines hidden (view full) ---

69 STRTOG_Infinite = 3,
70 STRTOG_NaN = 4,
71 STRTOG_NaNbits = 5,
72 STRTOG_NoNumber = 6,
73 STRTOG_Retmask = 7,
74
75 /* The following may be or-ed into one of the above values. */
76
77 STRTOG_Neg = 0x08,
78 STRTOG_Inexlo = 0x10,
79 STRTOG_Inexhi = 0x20,
77 STRTOG_Neg = 0x08, /* does not affect STRTOG_Inexlo or STRTOG_Inexhi */
78 STRTOG_Inexlo = 0x10, /* returned result rounded toward zero */
79 STRTOG_Inexhi = 0x20, /* returned result rounded away from zero */
80 STRTOG_Inexact = 0x30,
81 STRTOG_Underflow= 0x40,
82 STRTOG_Overflow = 0x80
83 };
84
85 typedef struct
86FPI {
87 int nbits;

--- 66 unchanged lines hidden ---
80 STRTOG_Inexact = 0x30,
81 STRTOG_Underflow= 0x40,
82 STRTOG_Overflow = 0x80
83 };
84
85 typedef struct
86FPI {
87 int nbits;

--- 66 unchanged lines hidden ---