ReactOS 0.4.16-dev-959-g2ec3a19
atox.cpp File Reference
#include <corecrt_internal_strtox.h>
#include <stdlib.h>
Include dependency graph for atox.cpp:

Go to the source code of this file.

Macros

#define _ALLOW_OLD_VALIDATE_MACROS
 

Functions

int __cdecl atoi (char const *const string)
 
int __cdecl _atoi_l (char const *const string, _locale_t const locale)
 
long __cdecl atol (char const *const string)
 
long __cdecl _atol_l (char const *const string, _locale_t const locale)
 
long long __cdecl atoll (char const *const string)
 
long long __cdecl _atoll_l (char const *const string, _locale_t const locale)
 
__int64 __cdecl _atoi64 (char const *const string)
 
__int64 __cdecl _atoi64_l (char const *const string, _locale_t const locale)
 
int __cdecl _wtoi (wchar_t const *const string)
 
int __cdecl _wtoi_l (wchar_t const *const string, _locale_t const locale)
 
long __cdecl _wtol (wchar_t const *const string)
 
long __cdecl _wtol_l (wchar_t const *const string, _locale_t const locale)
 
long long __cdecl _wtoll (wchar_t const *const string)
 
long long __cdecl _wtoll_l (wchar_t const *const string, _locale_t const locale)
 
__int64 __cdecl _wtoi64 (wchar_t const *const string)
 
__int64 __cdecl _wtoi64_l (wchar_t const *const string, _locale_t const locale)
 

Macro Definition Documentation

◆ _ALLOW_OLD_VALIDATE_MACROS

#define _ALLOW_OLD_VALIDATE_MACROS

Definition at line 9 of file atox.cpp.

Function Documentation

◆ _atoi64()

__int64 __cdecl _atoi64 ( char const *const  string)

Definition at line 51 of file atox.cpp.

52{
53 return __crt_strtox::parse_integer_from_string<__int64>(string, nullptr, 10, nullptr);
54}

◆ _atoi64_l()

__int64 __cdecl _atoi64_l ( char const *const  string,
_locale_t const  locale 
)

Definition at line 56 of file atox.cpp.

57{
58 return __crt_strtox::parse_integer_from_string<__int64>(string, nullptr, 10, locale);
59}
Definition: _locale.h:75

◆ _atoi_l()

int __cdecl _atoi_l ( char const *const  string,
_locale_t const  locale 
)

Definition at line 26 of file atox.cpp.

27{
28 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, locale);
29}

◆ _atol_l()

long __cdecl _atol_l ( char const *const  string,
_locale_t const  locale 
)

Definition at line 36 of file atox.cpp.

37{
38 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, locale);
39}

◆ _atoll_l()

long long __cdecl _atoll_l ( char const *const  string,
_locale_t const  locale 
)

Definition at line 46 of file atox.cpp.

47{
48 return __crt_strtox::parse_integer_from_string<long long>(string, nullptr, 10, locale);
49}

◆ _wtoi()

int __cdecl _wtoi ( wchar_t const *const  string)

Definition at line 68 of file atox.cpp.

69{
70 // Note: We parse as a long to avoid an extra specialization of parse_integer_from_string
71 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, nullptr);
72}

◆ _wtoi64()

__int64 __cdecl _wtoi64 ( wchar_t const *const  string)

Definition at line 99 of file atox.cpp.

100{
101 return __crt_strtox::parse_integer_from_string<__int64>(string, nullptr, 10, nullptr);
102}

◆ _wtoi64_l()

__int64 __cdecl _wtoi64_l ( wchar_t const *const  string,
_locale_t const  locale 
)

Definition at line 104 of file atox.cpp.

105{
106 return __crt_strtox::parse_integer_from_string<__int64>(string, nullptr, 10, locale);
107}

◆ _wtoi_l()

int __cdecl _wtoi_l ( wchar_t const *const  string,
_locale_t const  locale 
)

Definition at line 74 of file atox.cpp.

75{
76 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, locale);
77}

◆ _wtol()

long __cdecl _wtol ( wchar_t const *const  string)

Definition at line 79 of file atox.cpp.

80{
81 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, nullptr);
82}

◆ _wtol_l()

long __cdecl _wtol_l ( wchar_t const *const  string,
_locale_t const  locale 
)

Definition at line 84 of file atox.cpp.

85{
86 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, locale);
87}

◆ _wtoll()

long long __cdecl _wtoll ( wchar_t const *const  string)

Definition at line 89 of file atox.cpp.

90{
91 return __crt_strtox::parse_integer_from_string<long long>(string, nullptr, 10, nullptr);
92}

◆ _wtoll_l()

long long __cdecl _wtoll_l ( wchar_t const *const  string,
_locale_t const  locale 
)

Definition at line 94 of file atox.cpp.

95{
96 return __crt_strtox::parse_integer_from_string<long long>(string, nullptr, 10, locale);
97}

◆ atoi()

int __cdecl atoi ( char const *const  string)

Definition at line 20 of file atox.cpp.

21{
22 // Note: We parse as a long to avoid an extra specialization of parse_integer_from_string
23 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, nullptr);
24}

◆ atol()

long __cdecl atol ( char const *const  string)

Definition at line 31 of file atox.cpp.

32{
33 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, nullptr);
34}

◆ atoll()

long long __cdecl atoll ( char const *const  string)

Definition at line 41 of file atox.cpp.

42{
43 return __crt_strtox::parse_integer_from_string<long long>(string, nullptr, 10, nullptr);
44}