7 lines
105 B
C
7 lines
105 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
float strtof( const char *nptr, char **endptr)
|
||
|
{
|
||
|
return (strtod(nptr, endptr));
|
||
|
}
|