Things.
This commit is contained in:
parent
85e17ede84
commit
64ef797727
@ -26,6 +26,7 @@ double acc_float(int c) {
|
||||
if (*inp == '.') {
|
||||
char* oinp = inp++;
|
||||
while (isdigit(*inp)) {
|
||||
// TODO:
|
||||
// Accumulate as int, divide once at end.
|
||||
value = value + (((double)(*inp - '0'))/pow(10.0l, (double)(inp-oinp))); // Accumulate value.
|
||||
inp++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user