]>
Commit | Line | Data |
---|---|---|
9385eb3d A |
1 | /**************************************************************** |
2 | ||
3 | The author of this software is David M. Gay. | |
4 | ||
5 | Copyright (C) 1998, 2000 by Lucent Technologies | |
6 | All Rights Reserved | |
7 | ||
8 | Permission to use, copy, modify, and distribute this software and | |
9 | its documentation for any purpose and without fee is hereby | |
10 | granted, provided that the above copyright notice appear in all | |
11 | copies and that both that the copyright notice and this | |
12 | permission notice and warranty disclaimer appear in supporting | |
13 | documentation, and that the name of Lucent or any of its entities | |
14 | not be used in advertising or publicity pertaining to | |
15 | distribution of the software without specific, written prior | |
16 | permission. | |
17 | ||
18 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, | |
19 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. | |
20 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY | |
21 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | |
22 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER | |
23 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, | |
24 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | |
25 | THIS SOFTWARE. | |
26 | ||
27 | ****************************************************************/ | |
28 | ||
3d9156a7 A |
29 | /* Please send bug reports to David M. Gay (dmg at acm dot org, |
30 | * with " at " changed at "@" and " dot " changed to "."). */ | |
9385eb3d | 31 | |
ad3c9f2a A |
32 | #include "xlocale_private.h" |
33 | ||
9385eb3d A |
34 | #include "gdtoaimp.h" |
35 | ||
36 | float | |
37 | #ifdef KR_headers | |
ad3c9f2a | 38 | strtof_l(s, sp, loc) CONST char *s; char **sp; locale_t loc; |
9385eb3d | 39 | #else |
ad3c9f2a | 40 | strtof_l(CONST char *s, char **sp, locale_t loc) |
9385eb3d A |
41 | #endif |
42 | { | |
34e8f829 | 43 | static FPI fpi0 = { 24, 1-127-24+1, 254-127-24+1, 1, SI }; |
9385eb3d A |
44 | ULong bits[1]; |
45 | Long exp; | |
46 | int k; | |
47 | union { ULong L[1]; float f; } u; | |
34e8f829 A |
48 | #ifdef Honor_FLT_ROUNDS |
49 | #include "gdtoa_fltrnds.h" | |
50 | #else | |
51 | #define fpi &fpi0 | |
52 | #endif | |
9385eb3d | 53 | |
ad3c9f2a A |
54 | NORMALIZE_LOCALE(loc); |
55 | k = strtodg(s, sp, fpi, &exp, bits, loc); | |
9385eb3d A |
56 | switch(k & STRTOG_Retmask) { |
57 | case STRTOG_NoNumber: | |
ad3c9f2a A |
58 | u.L[0] = 0; |
59 | return u.f; // avoid setting sign | |
60 | ||
9385eb3d A |
61 | case STRTOG_Zero: |
62 | u.L[0] = 0; | |
63 | break; | |
64 | ||
65 | case STRTOG_Normal: | |
66 | case STRTOG_NaNbits: | |
1f2f436a | 67 | u.L[0] = (bits[0] & 0x7fffff) | ((exp + 0x7f + 23) << 23); |
9385eb3d A |
68 | break; |
69 | ||
70 | case STRTOG_Denormal: | |
71 | u.L[0] = bits[0]; | |
72 | break; | |
73 | ||
74 | case STRTOG_Infinite: | |
75 | u.L[0] = 0x7f800000; | |
76 | break; | |
77 | ||
78 | case STRTOG_NaN: | |
3d9156a7 | 79 | u.L[0] = f_QNAN; |
9385eb3d A |
80 | } |
81 | if (k & STRTOG_Neg) | |
82 | u.L[0] |= 0x80000000L; | |
83 | return u.f; | |
84 | } | |
ad3c9f2a A |
85 | |
86 | float | |
87 | #ifdef KR_headers | |
88 | strtof(s, sp) CONST char *s; char **sp; | |
89 | #else | |
90 | strtof(CONST char *s, char **sp) | |
91 | #endif | |
92 | { | |
93 | return strtof_l(s, sp, __current_locale()); | |
94 | } |