1 2 3 4 5 6 7 8 9 10
#include <wchar.h> wchar_t * wcswcs(const wchar_t * s1, const wchar_t * s2) { return wcsstr(s1, s2); } /* XOPEN(4,700) */