1#include <wchar.h>
2
3wchar_t* wcswcs(const wchar_t* haystack, const wchar_t* needle) {
4    return wcsstr(haystack, needle);
5}
6