Sign in
third-party-mirror
/
mingw-w64
/
bae685a8d8341be15e122971f13e1715cfd138eb
/
.
/
mingw-w64-crt
/
stdio
/
strtof.c
blob: 7ed8375ccc416274bc27d10c884f89524a61d775 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
float
strtof
(
const
char
*
nptr
,
char
**
endptr
)
{
return
(
strtod
(
nptr
,
endptr
));
}