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

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

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