mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
17 lines
179 B
C
17 lines
179 B
C
|
|
||
|
#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 */
|