mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
16 lines
179 B
C
16 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 */
|