#include <corecrt_internal_strtox.h>
#include <stdlib.h>
Go to the source code of this file.
◆ _ALLOW_OLD_VALIDATE_MACROS
#define _ALLOW_OLD_VALIDATE_MACROS |
◆ _atoi64()
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()
Definition at line 56 of file atox.cpp.
57{
58 return __crt_strtox::parse_integer_from_string<__int64>(
string,
nullptr, 10,
locale);
59}
◆ _atoi_l()
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()
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()
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()
Definition at line 68 of file atox.cpp.
69{
70
71 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, nullptr);
72}
◆ _wtoi64()
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()
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()
Definition at line 74 of file atox.cpp.
75{
76 return __crt_strtox::parse_integer_from_string<long>(
string,
nullptr, 10,
locale);
77}
◆ _wtol()
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()
Definition at line 84 of file atox.cpp.
85{
86 return __crt_strtox::parse_integer_from_string<long>(
string,
nullptr, 10,
locale);
87}
◆ _wtoll()
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()
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()
Definition at line 20 of file atox.cpp.
21{
22
23 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, nullptr);
24}
◆ atol()
Definition at line 31 of file atox.cpp.
32{
33 return __crt_strtox::parse_integer_from_string<long>(string, nullptr, 10, nullptr);
34}
◆ atoll()
Definition at line 41 of file atox.cpp.
42{
43 return __crt_strtox::parse_integer_from_string<long long>(string, nullptr, 10, nullptr);
44}