Synopsis
wchar_t *wcsstr(const wchar_t *s1,
                const wchar_t *s2);
Description

wcsstr locates the first occurrence in the wide string pointed to by s1 of the sequence of wide characters (excluding the terminating null wide character) in the wide string pointed to by s2.

wcsstr returns a pointer to the located wide string, or a null pointer if the wide string is not found. If s2 points to a wide string with zero length, wcsstr returns s1.