*** empty log message ***

svn path=/trunk/; revision=4779
This commit is contained in:
Hartmut Birr 2003-05-27 20:02:20 +00:00
parent d9ee350ffd
commit 7944ef0129

View file

@ -1,19 +0,0 @@
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include <msvcrt/string.h>
size_t wcslen(const wchar_t * s)
{
const wchar_t *save;
if (s == 0)
return 0;
for (save = s; *save; ++save);
return save-s;
}
size_t wstrlen(const wchar_t *s)
{
return wcslen(s);
}