blob: 38a614ece74c5ece84ddca3ef75679a90c5806c6 [file]
#include <wchar.h>
wchar_t* wcswcs(const wchar_t* haystack, const wchar_t* needle) {
return wcsstr(haystack, needle);
}