1 /* wcslen( const 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
11 size_t wcslen( const wchar_t * str )
\r
14 while(*(str++)) n++;
\r
22 #include <_PDCLIB_test.h>
\r
26 return TEST_RESULTS;
\r