Locale-Sensitive C/C++ String Operation Function
char *strchrnul(const char *string, int c);
wchar_t *wcschrnul(const wchar_t *wstring, wchar_t wc);
Internationalization (I18n) Function Overview
strchrnul is the same as strchr except that if it does not find the character, it returns a pointer to string's terminating null character rather than a null pointer.
wcschrnul is the same as wcschr except that if it does not find the wide character, it returns a pointer to wide character string's terminating null wide character rather than a null pointer.
I18n Issues
Use the appropriate version of the function as required for internationalization support.
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
|