Synopsis
wchar_t *wcsrchr(const wchar_t *s,
                 wchar_t c);
Description

wcsrchr locates the last occurrence of c in the wide string pointed to by s. The terminating wide null character is considered to be part of the string.

wcsrchr returns a pointer to the wide character, or a null pointer if c does not occur in the wide string.