ReactOS 0.4.15-dev-7998-gdb93cb1
tcslen.h File Reference
#include <stddef.h>
#include <tchar.h>
Include dependency graph for tcslen.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

size_t __cdecl _tcslen (const _TCHAR *str)
 

Function Documentation

◆ _tcslen()

size_t __cdecl _tcslen ( const _TCHAR str)

Definition at line 9 of file tcslen.h.

10{
11 const _TCHAR * s;
12
13 if(str == 0) return 0;
14
15 for(s = str; *s; ++ s);
16
17 return s - str;
18}
GLdouble s
Definition: gl.h:2039
char _TCHAR
Definition: tchar.h:1392
const WCHAR * str