1 /* Copyright (c) 2002-2005  Michael Stumpf  <mistumpf@de.pepperl-fuchs.com>
2    Copyright (c) 2006,2008  Dmitry Xmelkov
3 
4    All rights reserved.
5 
6    Redistribution and use in source and binary forms, with or without
7    modification, are permitted provided that the following conditions are met:
8 
9    * Redistributions of source code must retain the above copyright
10      notice, this list of conditions and the following disclaimer.
11    * Redistributions in binary form must reproduce the above copyright
12      notice, this list of conditions and the following disclaimer in
13      the documentation and/or other materials provided with the
14      distribution.
15    * Neither the name of the copyright holders nor the names of
16      contributors may be used to endorse or promote products derived
17      from this software without specific prior written permission.
18 
19    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23    LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29    POSSIBILITY OF SUCH DAMAGE. */
30 
31 /* $Id: strtod.c 2191 2010-11-05 13:45:57Z arcanum $ */
32 
33 #define STRTOLD
34 
35 #include "stdio_private.h"
36 
37 #if defined(_HAVE_LONG_DOUBLE) && __SIZEOF_LONG_DOUBLE__ > __SIZEOF_DOUBLE__
38 
39 /**  The strtold() function converts the initial portion of the string pointed
40      to by \a nptr to long double representation.
41 
42      The expected form of the string is an optional plus ( \c '+' ) or minus
43      sign ( \c '-' ) followed by a sequence of digits optionally containing
44      a decimal-point character, optionally followed by an exponent.  An
45      exponent consists of an \c 'E' or \c 'e', followed by an optional plus
46      or minus sign, followed by a sequence of digits.
47 
48      Leading white-space characters in the string are skipped.
49 
50      The strtold() function returns the converted value, if any.
51 
52      If \a endptr is not \c NULL, a pointer to the character after the last
53      character used in the conversion is stored in the location referenced by
54      \a endptr.
55 
56      If no conversion is performed, zero is returned and the value of
57      \a nptr is stored in the location referenced by \a endptr.
58 
59      If the correct value would cause overflow, plus or minus \c INFINITY is
60      returned (according to the sign of the value), and \c ERANGE is stored
61      in \c errno.  If the correct value would cause underflow, zero is
62      returned and \c ERANGE is stored in \c errno.
63  */
64 
65 #include "conv_flt.c"
66 
67 long double
strtold(const char * nptr,char ** endptr)68 strtold (const char * nptr, char ** endptr)
69 {
70     int len = 0;
71     long double flt;
72     unsigned char ret;
73 
74     while (isspace(nptr[len]))
75         len++;
76 
77     ret = conv_flt(nptr, &len, INT_MAX, &flt, FL_LONG);
78     if (!ret) {
79         flt = (long double) 0.0;
80         len = 0;
81     }
82     if (endptr)
83         *endptr = (char *) nptr + len;
84     return flt;
85 }
86 
87 #endif
88