mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 08:43:28 +00:00
65ce146169
svn path=/branches/ros-csrss/; revision=57561
18 lines
191 B
C
18 lines
191 B
C
/* $Id$
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
#include <tchar.h>
|
|
|
|
size_t _tcslen(const _TCHAR * str)
|
|
{
|
|
const _TCHAR * s;
|
|
|
|
if(str == 0) return 0;
|
|
|
|
for(s = str; *s; ++ s);
|
|
|
|
return s - str;
|
|
}
|
|
|
|
/* EOF */
|