Search a wide character string for the last occurrence of a specified wide character.
Compatibility:This function is compatible with the following targets:
|
BeOS
|
|
#include <wchar.h>
wchar_t * wcsrchr(const wchar_t * str,  
wchar_t chr);
Parameters for this function are:
Performs the same task as strrchr for a wide character type.
Returns a pointer to the character found or returns a null pointer (NULL) if it fails.