7.24.4.5.1 The wcschr function
Synopsis
#include <wchar.h>
wchar_t *wcschr(const wchar_t *s, wchar_t c);
Description
The wcschr function locates the first occurrence of c in the wide string pointed to by s. The terminating null wide character is considered to be part of the wide string.
Returns
The wcschr function returns a pointer to the located wide character, or a null pointer if the wide character does not occur in the wide string.