| 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 OverviewThe _atoi64function convertsstringinto an __int64, using the LC_NUMERIC category setting of the current locale. _wtoi64is the wide character version of_atoi64, converting a wide-character string into an integer.
 _tstoi64and_ttoi64are Generic versions of the function.
 I18n IssuesUse 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    
 |