ReactOS 0.4.16-dev-937-g7afcd2a
atof.cpp File Reference
Include dependency graph for atof.cpp:

Go to the source code of this file.

Macros

#define _ALLOW_OLD_VALIDATE_MACROS
 

Functions

template<typename FloatingType , typename Character >
static int __cdecl common_atodbl_l (FloatingType *const result, Character const *const string, _locale_t const locale) throw ()
 
int __cdecl _atoflt_l (_CRT_FLOAT *const result, char const *const string, _locale_t const locale)
 
int __cdecl _atoflt (_CRT_FLOAT *const result, char const *const string)
 
int __cdecl _atodbl_l (_CRT_DOUBLE *const result, char *const string, _locale_t const locale)
 
int __cdecl _atodbl (_CRT_DOUBLE *const result, char *const string)
 
template<typename Character >
static double __cdecl common_atof_l (Character const *const string, _locale_t const locale) throw ()
 
double __cdecl _atof_l (char const *const string, _locale_t const locale)
 
double __cdecl atof (char const *const string)
 
double __cdecl _wtof_l (wchar_t const *const string, _locale_t const locale)
 
double __cdecl _wtof (wchar_t const *const string)
 

Macro Definition Documentation

◆ _ALLOW_OLD_VALIDATE_MACROS

#define _ALLOW_OLD_VALIDATE_MACROS

Definition at line 13 of file atof.cpp.

Function Documentation

◆ _atodbl()

int __cdecl _atodbl ( _CRT_DOUBLE *const  result,
char *const  string 
)

Definition at line 56 of file atof.cpp.

57{
58 return common_atodbl_l(&result->x, string, nullptr);
59}
static int __cdecl common_atodbl_l(FloatingType *const result, Character const *const string, _locale_t const locale)
Definition: atof.cpp:19
GLuint64EXT * result
Definition: glext.h:11304

◆ _atodbl_l()

int __cdecl _atodbl_l ( _CRT_DOUBLE *const  result,
char *const  string,
_locale_t const  locale 
)

Definition at line 51 of file atof.cpp.

52{
53 return common_atodbl_l(&result->x, string, locale);
54}
Definition: _locale.h:75

◆ _atof_l()

double __cdecl _atof_l ( char const *const  string,
_locale_t const  locale 
)

Definition at line 78 of file atof.cpp.

79{
80 return common_atof_l(string, locale);
81}
static double __cdecl common_atof_l(Character const *const string, _locale_t const locale)
Definition: atof.cpp:64

◆ _atoflt()

int __cdecl _atoflt ( _CRT_FLOAT *const  result,
char const *const  string 
)

Definition at line 46 of file atof.cpp.

47{
48 return common_atodbl_l(&result->f, string, nullptr);
49}

◆ _atoflt_l()

int __cdecl _atoflt_l ( _CRT_FLOAT *const  result,
char const *const  string,
_locale_t const  locale 
)

Definition at line 41 of file atof.cpp.

42{
43 return common_atodbl_l(&result->f, string, locale);
44}

◆ _wtof()

double __cdecl _wtof ( wchar_t const *const  string)

Definition at line 93 of file atof.cpp.

94{
95 return common_atof_l(string, nullptr);
96}

◆ _wtof_l()

double __cdecl _wtof_l ( wchar_t const *const  string,
_locale_t const  locale 
)

Definition at line 88 of file atof.cpp.

89{
90 return common_atof_l(string, locale);
91}

◆ atof()

double __cdecl atof ( char const *const  string)

Definition at line 83 of file atof.cpp.

84{
85 return common_atof_l(string, nullptr);
86}

◆ common_atodbl_l()

template<typename FloatingType , typename Character >
static int __cdecl common_atodbl_l ( FloatingType *const  result,
Character const *const  string,
_locale_t const  locale 
)
throw (
)
static

Definition at line 19 of file atof.cpp.

24{
26
27 _LocaleUpdate locale_update(locale);
29 locale_update.GetLocaleT(),
31 result);
32
33 switch (status)
34 {
35 case SLD_OVERFLOW: return _OVERFLOW;
36 case SLD_UNDERFLOW: return _UNDERFLOW;
37 default: return 0;
38 }
39}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
#define _DOMAIN
Definition: math.h:39
#define _UNDERFLOW
Definition: math.h:42
#define _OVERFLOW
Definition: math.h:41
c_string_character_source< Character > __cdecl make_c_string_character_source(Character const *const string, EndPointer const end)
SLD_STATUS __cdecl parse_floating_point(_locale_t const locale, CharacterSource source, FloatingType *const result)
Definition: ps.c:97

Referenced by _atodbl(), _atodbl_l(), _atoflt(), and _atoflt_l().

◆ common_atof_l()

template<typename Character >
static double __cdecl common_atof_l ( Character const *const  string,
_locale_t const  locale 
)
throw (
)
static

Definition at line 64 of file atof.cpp.

65{
66 _VALIDATE_RETURN(string != nullptr, EINVAL, 0.0);
67
68 _LocaleUpdate locale_update(locale);
69
70 double result{};
72 locale_update.GetLocaleT(),
74 &result);
75 return result;
76}

Referenced by _atof_l(), _wtof(), _wtof_l(), and atof().