Sign in
third-party-mirror
/
mingw-w64
/
53b69ff3e3f267ccab95a84f9cc0be133f996eb1
/
.
/
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
));
}