mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
*** empty log message ***
svn path=/trunk/; revision=4779
This commit is contained in:
parent
d9ee350ffd
commit
7944ef0129
1 changed files with 0 additions and 19 deletions
|
@ -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);
|
|
||||||
}
|
|
Loading…
Reference in a new issue