Searches a specified string for the first occurrence of another string specified.
wchar_t *wcsstr(const wchar_t *s1, const wchar_t *s2);
s1 Pointer to the string to be searched
s2 Pointer to the string to search for
If the string is found: Pointer to the found string