summaryrefslogtreecommitdiff
path: root/src/wchar/wcswcs.c
blob: 31fb5b593d686a35e861f6b0c1f2c11debbf913b (plain)
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)
*/