summaryrefslogtreecommitdiff
path: root/src/wchar/wcswcs.c
blob: 07aff7d442e7b1f911a17ea6f9bbb15489d8d621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#if 0

#ifdef __STDC_VERSION__
#include <wchar.h>
#else
#include <stddef.h>
#include "wctype/wint_t.c"
#include "wctype/wctrans_t.c"
#define wcsstr __wcsstr
#include "wcsstr.c"
#endif

wchar_t * wcswcs(const wchar_t * s1, const wchar_t * s2)
{
	SIGNAL_SAFE(0);
	/* TODO: overlap */

	return wcsstr(s1, s2);
}

/*
XOPEN(4,700)
*/


#endif