mirror of
https://git.wuffs.org/MWCC
synced 2025-07-23 15:25:53 +00:00
10 lines
185 B
C
10 lines
185 B
C
#include "compiler/ScanFloat.h"
|
|
|
|
char *ScanFloat(const char *str, double *result, Boolean *failed) {
|
|
char *end;
|
|
|
|
*result = strtod(str, &end);
|
|
*failed = 0;
|
|
return end;
|
|
}
|