From: Vadim Zeitlin Date: Wed, 11 Sep 2002 12:33:52 +0000 (+0000) Subject: removed wcslen() implementation, it is now inline in wxchar.h X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/70f2e88c6b16abd31645049db8d6d76540fcd3de removed wcslen() implementation, it is now inline in wxchar.h git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17131 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wxchar.cpp b/src/common/wxchar.cpp index 28f80d66fe..bca67b1228 100644 --- a/src/common/wxchar.cpp +++ b/src/common/wxchar.cpp @@ -108,15 +108,6 @@ bool WXDLLEXPORT wxOKlibc() return TRUE; } -#ifndef HAVE_WCSLEN -size_t WXDLLEXPORT wcslen(const wchar_t *s) -{ - size_t len = 0; - while (s[len]) len++; - return len; -} -#endif - // ============================================================================ // printf() functions business // ============================================================================