8 lines
107 B
C
Raw Normal View History

2018-05-02 19:43:33 +09:00
/* Really bad atof */
#include <stdlib.h>
double atof(const char * nptr) {
2018-06-25 12:11:33 +09:00
return strtod(nptr, NULL);
2018-05-02 19:43:33 +09:00
}