| Locale-Sensitive C/C++ String Operation Function void *memrchr(const void *block, int c, size_t size); Internationalization (I18n) Function OverviewThe function memrchris likememchr, except that it searches backwards from the end of the block defined byblockandsize(instead of forwards from the front). I18n IssuesThere is no ANSI multibyte UTF-8 version of this function, and memrchrdoes not work correctly with multibyte UTF-8 characters.  (The parametercis cast to aunsigned char, so multibyte characters are not handled properly.) Additionally, there is no ANSI wide character version of this function. These two issues combined mean that there is no suitable substitution for memrchrthat is readily available which supports multibyte or wide character strings. 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    
 |