musl-tcc/src/string/wcswcs.c
2022-03-20 16:48:53 +08:00

7 lines
122 B
C

#include <wchar.h>
wchar_t *wcswcs(const wchar_t *haystack, const wchar_t *needle)
{
return wcsstr(haystack, needle);
}