1/* $NetBSD: strtof_vaxf.c,v 1.7 2013/04/18 21:54:11 joerg Exp $ */
2
3/****************************************************************
4
5The author of this software is David M. Gay.
6
7Copyright (C) 1998, 2000 by Lucent Technologies
8All Rights Reserved
9
10Permission to use, copy, modify, and distribute this software and
11its documentation for any purpose and without fee is hereby
12granted, provided that the above copyright notice appear in all
13copies and that both that the copyright notice and this
14permission notice and warranty disclaimer appear in supporting
15documentation, and that the name of Lucent or any of its entities
16not be used in advertising or publicity pertaining to
17distribution of the software without specific, written prior
18permission.
19
20LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
21INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
22IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
23SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
24WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
25IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
26ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
27THIS SOFTWARE.
28
29****************************************************************/
30
31/* Please send bug reports to David M. Gay (dmg at acm dot org,
32 * with " at " changed at "@" and " dot " changed to ".").	*/
33
34/* Adapted to VAX F_floating by Klaus Klein <kleink@netbsd.org>. */
35
36#include "namespace.h"
37#include "gdtoaimp.h"
38#include <locale.h>
39#include "setlocale_local.h"
40
41#ifdef __weak_alias
42__weak_alias(strtof, _strtof)
43__weak_alias(strtof_l, _strtof_l)
44#endif
45
46static float
47_int_strtof_l(CONST char *s, char **sp, locale_t loc)
48{
49	static CONST FPI fpi = { 24, 1-128-1-24+1,  255-128-1-24+1, 1, SI };
50	ULong bits[1];
51	Long expt;
52	int k;
53	union { ULong L[1]; float f; } u;
54
55	k = strtodg(s, sp, &fpi, &expt, bits, loc);
56	if (k == STRTOG_NoMemory) {
57		errno = ERANGE;
58		return HUGE_VALF;
59	}
60	switch(k & STRTOG_Retmask) {
61	  case STRTOG_NoNumber:
62	  case STRTOG_Zero:
63	  default:
64		u.f = 0.0;
65		break;
66
67	  case STRTOG_Normal:
68		u.L[0] = ((bits[0] & 0x0000ffff) << 16)	| /* FracLo */
69			 ((bits[0] & 0x007f0000) >> 16)	| /* FracHi */
70			 ((expt + 128 + 1 + 23)  <<  7);  /* Exp */
71		break;
72
73	  case STRTOG_Infinite:
74		u.f = HUGE_VALF;
75		break;
76
77	  }
78	if (k & STRTOG_Neg)
79		u.L[0] |= 0x00008000L;
80	return u.f;
81}
82
83float
84strtof(CONST char *s, char **sp)
85{
86	return _int_strtof_l(s, sp, _current_locale());
87}
88
89float
90strtof_l(CONST char *s, char **sp, locale_t loc)
91{
92	return _int_strtof_l(s, sp, loc);
93}
94