[crt]
[reactos.git] / reactos / lib / sdk / crt / string / tcscat.h
1
2 #include <tchar.h>
3
4 _TCHAR * _tcscat(_TCHAR * s, const _TCHAR * append)
5 {
6 _TCHAR * save = s;
7
8 for(; *s; ++s);
9
10 while((*s++ = *append++));
11
12 return save;
13 }
14
15 /* EOF */