Locates a wchar_t character in a wide-character string.
Standard C Library (libc.a)
#include <wcstr.h>
 
wchar_t *wcsrchr ( WcString,  WideCharacter)
const wchar_t *WcString;
wint_t WideCharacter;
The wcsrchr subroutine locates the last occurrence of the WideCharacter value in the string pointed to by the WcString parameter. The terminating wchar_t null character is considered to be part of the string.
| Item | Description | 
|---|---|
| WcString | Points to a string. | 
| WideCharacter | Specifies a wchar_t character. | 
The wcsrchr subroutine returns a pointer to the WideCharacter parameter value, or a null pointer if that value does not occur in the specified string.