#include <stdlib.h>

float strtof( const char *nptr, char **endptr)
{
  return (strtod(nptr, endptr));
}
Download strtof.c — origineel C-bestand