Files
RedBear-OS/tests/atof.c
T
Jeremy Soller 0e766c6b53 Implement atof
2018-03-08 20:17:45 -07:00

9 lines
142 B
C

#include <stdlib.h>
#include <stdio.h>
int main(int argc, char* argv[]) {
double d = atof("1.0");
printf("%f\n", d);
return 0;
}