wcsrchr.c 164 字节
Newer Older
A
Anton Perkov 已提交
1 2 3 4 5 6 7 8
#include <wchar.h>

wchar_t *wcsrchr(const wchar_t *s, wchar_t c)
{
	const wchar_t *p;
	for (p=s+wcslen(s); p>=s && *p!=c; p--);
	return p>=s ? (wchar_t *)p : 0;
}