summaryrefslogtreecommitdiff
path: root/src/wchar/wcspbrk.c
blob: 155bbdf51564a428bdb2e4d53c22186a2d893fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#if 0

#include <wchar.h>

wchar_t * wcspbrk(const wchar_t * s1, const wchar_t * s2)
{
	int i;
	for (i = 0; s1[i] != L'\0'; i++) {
		if (wcschr(s2, s1[i]) != NULL) {
			return (wchar_t*)s1 + i;
		}
	}

	return NULL;
}

/*
STDC(199409)
*/


#endif