Welcome to mirror list, hosted at ThFree Co, Russian Federation.

strtof.c « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62907cb198b420af4c7a0a030e2d5e2670bdfc54 (plain)
1
2
3
4
5
6
#include <stdlib.h>

float strtof( const char *nptr, char **endptr)
{
  return (strtod(nptr, endptr));
}