fxlibc/src/libc/stdlib/atof.c

7 lines
89 B
C

#include <stdlib.h>
double atof(char const *ptr)
{
return (double)strtod(ptr, NULL);
}