-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrtodouble.c
More file actions
136 lines (115 loc) · 2.58 KB
/
Copy pathstrtodouble.c
File metadata and controls
136 lines (115 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#include <ctype.h>
#include <math.h>
#include <stdlib.h>
#include "strtodouble.h"
double strtodouble(const char *str, int *success)
{
double intpart = 0, fracpart = 0, exponent = 0;
int sign = +1, len = 0, conversion = 0;
// skip whitespace
while(isspace(*str))
str++;
// check for sign (optional; either + or -)
if(*str == '-')
{
sign = -1;
str++;
}
else if(*str == '+')
str++;
// check for nan and inf
if(tolower(str[0]) == 'n' && tolower(str[1]) == 'a' && tolower(str[2]) == 'n')
{
if(success != NULL)
*success = 1;
return NAN;
}
if(tolower(str[0]) == 'i' && tolower(str[1]) == 'n' && tolower(str[2]) == 'f')
{
if(success != NULL)
*success = 1;
return sign*INFINITY;
}
// find number of digits before decimal point
{
const char *p = str;
len = 0;
while(isdigit(*p))
{
p++;
len++;
}
}
if(len)
conversion = 1;
// convert intpart part of decimal point to a float
{
double f = 1;
for(int i = 0; i < len; i++)
{
int v = str[len-1-i] - '0';
intpart += v*f;
f *= 10;
}
str += len;
}
// check for decimal point (optional)
if(*str == '.')
{
const char *p = ++str;
// find number of digits after decimal point
len = 0;
while(isdigit(*p))
{
p++;
len++;
}
if(len)
conversion = 1;
// convert fracpart part of decimal point to a float
double f = 0.1;
for(int i = 0; i < len; i++)
{
int v = str[i] - '0';
fracpart += v*f;
f *= 0.1;
}
str = p;
}
if(conversion && (*str == 'e' || *str == 'E'))
{
int expsign = +1;
const char *p = ++str;
if(*p == '+')
p++;
else if(*p == '-')
{
expsign = -1;
p++;
}
str = p;
len = 0;
while(isdigit(*p))
{
len++;
p++;
}
int f = 1;
for(int i = 0; i < len; i++)
{
int v = str[len-1-i]-'0';
exponent += v*f;
f *= 10;
}
exponent *= expsign;
}
if(!conversion)
{
if(success != NULL)
*success = 0;
return NAN;
}
if(success != NULL)
*success = 1;
return sign*(intpart+fracpart)*pow(10, exponent);
}