wcswcs.c 122 B

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