| 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 Overviewstrchrnulis the same asstrchrexcept that if it does not find the character, it returns a pointer to string's terminating null character rather than a null pointer.
 wcschrnulis the same aswcschrexcept 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 IssuesUse 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    
 |