blob: c591e44ce2afd93d9def1931011e59e1f7310e28 (
plain)
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
|
#include <lib9.h>
static int
strtodf(void *vp)
{
return *(*((char**)vp))++;
}
double
strtod(char *s, char **end)
{
double d;
char *ss;
int c;
ss = s;
d = charstod(strtodf, &s);
/*
* Fix cases like 2.3e+ , which charstod will consume
*/
if(end){
*end = --s;
while(s > ss){
c = *--s;
if(c!='-' && c!='+' && c!='e' && c!='E')
break;
(*end)--;
}
}
return d;
}
|