8 lines
107 B
C
8 lines
107 B
C
/* Really bad atof */
|
|
|
|
#include <stdlib.h>
|
|
|
|
double atof(const char * nptr) {
|
|
return strtod(nptr, NULL);
|
|
}
|