musl/src/string/wcswcs.c
2011-02-12 00:22:29 -05:00

7 lines
122 B
C

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