| Locale-Sensitive C/C++ String Operation Function unsigned long long int strtoull(const char *restrict string, char **restrict tailptr, int base);  unsigned long long int wcstoull(const wchar_t *restrict string, wchar_t **restrict tailptr, int base);  unsigned long long int strtouq(const char *restrict string, char **restrict tailptr, int base);  unsigned long long int wcstouq(const wchar_t *restrict string, wchar_t **restrict tailptr, int base); Internationalization (I18n) Function OverviewThe strtoull("string-to-unsigned-long-long") function converts the initial part ofstringto an unsigned integer, which is returned as a value of type unsigned long long int. The wcstoullfunction is equivalent to thestrtoullfunction in nearly all aspects but handles wide character strings. The strtouqfunction is the BSD name forstrtoull. The wcstouqfunction is the BSD name forwcstoull. 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    
 |