| Locale-Sensitive C/C++ String Operation Function long atol(const char* string);  long _wtol(const wchar_t* string);  long _tstol(const TCHAR* string);  long _ttol(const TCHAR* string); Internationalization (I18n) Function OverviewThe atolfunction convertsstringinto a long, using the LC_NUMERIC category setting of the current locale. _wtolis supported only on Windows platforms and is the wide character version ofatol, converting a wide-character string into an integer.
 _tstoland_ttolare the Windows-only Generic version of the function.
 I18n IssuesUse the appropriate version of the function as required for internationalization support, noting the following: For ANSI UTF-8, atolis 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    
 |