summaryrefslogtreecommitdiff
path: root/src/wchar/wcsrchr.c
blob: 7d9e9a507f7e98b895560dc9f9542feff63db3bb (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 * wcsrchr(const wchar_t * s, wchar_t c)
{
	wchar_t *last = NULL;
	while (*s) {
		if (*s == c) {
			last = (wchar_t*)s;
		}
		s++;
	}
	return last;
}

/*
STDC(199409)
*/


#endif