ReactOS 0.4.15-dev-7953-g1f49173
atof.c File Reference
#include <precomp.h>
Include dependency graph for atof.c:

Go to the source code of this file.

Functions

double atof (const char *ascii)
 

Function Documentation

◆ atof()

double atof ( const char ascii)

Definition at line 8 of file atof.c.

9{
10 return strtod(ascii, 0);
11}
_Check_return_ double __cdecl strtod(_In_z_ const char *_Str, _Out_opt_ _Deref_post_z_ char **_EndPtr)