| Locale-Sensitive C/C++ String Operation Function int atoi(const char* string);  int _wtoi(const wchar_t* string);  int _tstoi(const TCHAR* string);  int _ttoi(const TCHAR* string); Internationalization (I18n) Function OverviewThe atoifunction convertsstringinto an integer, using the LC_NUMERIC category setting of the current locale. _wtoiis supported only on Windows platforms and is the wide character version ofatoi, converting a wide-character string into an integer.
 _tstoiand_ttoiare Windows-only Generic versions of the function.
 I18n IssuesUse the appropriate version of the function as required for internationalization support, noting the following: For ANSI UTF-8, atoiis considered obsolete andstrtolshould be called instead. For ANSI UTF-16, use wcstol. 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    
 |