3 /* wcsrchr( const wchar_t *, wchar_t );
\r
5 This file is part of the Public Domain C Library (PDCLib).
\r
6 Permission is granted to use, modify, and / or redistribute at will.
\r
14 wchar_t *wcsrchr(const wchar_t * haystack, wchar_t needle)
\r
16 wchar_t *found = NULL;
\r
18 if(*haystack == needle) found = (wchar_t*) haystack;
\r
28 #include <_PDCLIB_test.h>
\r
32 return TEST_RESULTS;
\r