Locale-Sensitive C/C++ String Operation Function
__int64 _atoi64(const char* string);
__int64 _wtoi64(const wchar_t* string);
__int64 _tstoi64(const TCHAR* string);
__int64 _ttoi64(const TCHAR* string);
Internationalization (I18n) Function Overview
The _atoi64 function converts string into an __int64, using the LC_NUMERIC category setting of the current locale.
_wtoi64 is the wide character version of _atoi64 , converting a wide-character string into an integer.
_tstoi64 and _ttoi64 are Generic versions of the function.
I18n Issues
Use the appropriate version of the function as required for internationalization support, noting the following:
Ensure that the current locale is set properly.
Recommended Replacements*
*If you're already using the recommended function, see I18n Issues for other reasons why Globalyzer is detecting the function.
Locale-Sensitive C/C++
String Operation Functions
|