Name

wcschr function — Searches for a wide character in a wide string

Synopsis

const wchar_t* wcschr(const wchar_t* str, wchar_t wc)
      wchar_t* wcschr(      wchar_t* str, wchar_t wc)

The wcschr function returns a pointer to the first occurrence of wc in the null-terminated wide string str. If wc does not appear in str, a null pointer is returned.