1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-25 21:19:44 +00:00
reactos/lib/sdk/crt/string/tcslen.h

17 lines
179 B
C
Raw Normal View History

#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 */