1 /* wcschr( const wchar_t *, wchar_t );
\r
3 This file is part of the Public Domain C Library (PDCLib).
\r
4 Permission is granted to use, modify, and / or redistribute at will.
\r
12 wchar_t *wcschr(const wchar_t * haystack, wchar_t needle)
\r
15 if(*haystack == needle) return (wchar_t*) haystack;
\r
25 #include <_PDCLIB_test.h>
\r
29 return TEST_RESULTS;
\r