]> git.saurik.com Git - wxWidgets.git/commitdiff
Optional implementation of wcslen().
authorOve Kaaven <ovek@arcticnet.no>
Mon, 26 Apr 1999 10:16:21 +0000 (10:16 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Mon, 26 Apr 1999 10:16:21 +0000 (10:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2284 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/wxchar.cpp

index 38eb0aea22057f89752b81e618a2d911157ef630..f95e5d6c8fb6157f353844563790e6027c5d0b2f 100644 (file)
@@ -106,6 +106,15 @@ bool WXDLLEXPORT wxOKlibc()
   return TRUE;
 }
 
   return TRUE;
 }
 
+#ifdef wxNEED_WCSLEN
+size_t   WXDLLEXPORT wcslen(const wchar_t *s)
+{
+  size_t len;
+  while (s[len]) len++;
+  return len;
+}
+#endif
+
 #ifndef wxStrdup
 wxChar * WXDLLEXPORT wxStrdup(const wxChar *psz)
 {
 #ifndef wxStrdup
 wxChar * WXDLLEXPORT wxStrdup(const wxChar *psz)
 {