blob: 0ef15d282626410e51f11b36d48f25b48345354c [file] [log] [blame]
Guido van Rossum2b7e04a1995-02-19 15:54:36 +00001/***********************************************************
2Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
4
5 All Rights Reserved
6
Guido van Rossumd266eb41996-10-25 14:44:06 +00007Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
Guido van Rossum2b7e04a1995-02-19 15:54:36 +00009provided that the above copyright notice appear in all copies and that
Guido van Rossumd266eb41996-10-25 14:44:06 +000010both that copyright notice and this permission notice appear in
Guido van Rossum2b7e04a1995-02-19 15:54:36 +000011supporting documentation, and that the names of Stichting Mathematisch
Guido van Rossumd266eb41996-10-25 14:44:06 +000012Centrum or CWI or Corporation for National Research Initiatives or
13CNRI not be used in advertising or publicity pertaining to
14distribution of the software without specific, written prior
15permission.
Guido van Rossum2b7e04a1995-02-19 15:54:36 +000016
Guido van Rossumd266eb41996-10-25 14:44:06 +000017While CWI is the initial source for this software, a modified version
18is made available by the Corporation for National Research Initiatives
19(CNRI) at the Internet address ftp://ftp.python.org.
20
21STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
22REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
23MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
24CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
25DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
26PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
27TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28PERFORMANCE OF THIS SOFTWARE.
Guido van Rossum2b7e04a1995-02-19 15:54:36 +000029
30******************************************************************/
31
32/* Just in case you haven't got an atof() around...
33 This one doesn't check for bad syntax or overflow,
34 and is slow and inaccurate.
35 But it's good enough for the occasional string literal... */
36
Guido van Rossum2b7e04a1995-02-19 15:54:36 +000037#include "config.h"
Guido van Rossum2b7e04a1995-02-19 15:54:36 +000038
39#include <ctype.h>
40
41double atof(s)
42 char *s;
43{
44 double a = 0.0;
45 int e = 0;
46 int c;
47 while ((c = *s++) != '\0' && isdigit(c)) {
48 a = a*10.0 + (c - '0');
49 }
50 if (c == '.') {
51 while ((c = *s++) != '\0' && isdigit(c)) {
52 a = a*10.0 + (c - '0');
53 e = e-1;
54 }
55 }
56 if (c == 'e' || c == 'E') {
57 int sign = 1;
58 int i = 0;
59 c = *s++;
60 if (c == '+')
61 c = *s++;
62 else if (c == '-') {
63 c = *s++;
64 sign = -1;
65 }
66 while (isdigit(c)) {
67 i = i*10 + (c - '0');
68 c = *s++;
69 }
70 e += i*sign;
71 }
72 while (e > 0) {
73 a *= 10.0;
74 e--;
75 }
76 while (e < 0) {
77 a *= 0.1;
78 e++;
79 }
80 return a;
81}