| Locale-Sensitive C/C++ String Operation Function long long int strtoll(const char *restrict string, char **restrict tailptr, int base);  long long int wcstoll(const wchar_t *restrict string, wchar_t **restrict tailptr, int base);  long long int atoll(const char *restrict string, char **restrict tailptr, int base);  long long int strtoq(const char *restrict string, char **restrict tailptr, int base);  long long int wcstoq(const wchar_t *restrict string, wchar_t **restrict tailptr, int base); Internationalization (I18n) Function OverviewThe strtoll("string-to-long-long") function converts the initial part ofstringto a signed integer, which is returned as a value of type long long int. The wcstollfunction is equivalent to thestrtollfunction in nearly all aspects but handles wide character strings. atollis a deprecated alias forstrtoll.  Usestrtollinstead.
 The strtoqfunction is the BSD name forstrtoll. The wcstoqfunction is the BSD name forwcstoll. 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    
 |