Searches a specified string for the first occurrence of a specified character.
wchar_t *wcschr(const wchar_t *s, wchar_t c);
s Pointer to the string to be searched
If the character is found: Pointer to the found character
If the character is not found: NULL
The wcschr function is the wide-character version of the strchr function.