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