summaryrefslogtreecommitdiff
path: root/compiler_and_linker/unsorted/ScanFloat.c
blob: 8883b640335dce27d9bec382a71618243bec55e6 (plain)
1
2
3
4
5
6
7
8
9
#include "compiler/ScanFloat.h"

char *ScanFloat(const char *str, double *result, Boolean *failed) {
    char *end;

    *result = strtod(str, &end);
    *failed = 0;
    return end;
}