1 2 3 4 5 6
#include <stdlib.h> float strtof( const char *nptr, char **endptr) { return (strtod(nptr, endptr)); }