atof.c 74 B

123456
  1. #include <stdlib.h>
  2. double atof(const char *s)
  3. {
  4. return strtod(s, 0);
  5. }