blob: 0d933255e7c80fbb3b1f1718b27c265ddd2fdbdd [file] [log] [blame]
#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;
}