1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#if 0 #include <wchar.h> wchar_t * wcsstr(const wchar_t * s1, const wchar_t * s2) { (void)s2; return (wchar_t*)s1; } /* STDC(199409) */ #endif