This commit was manufactured by cvs2svn to create branch 'captive'.
[reactos.git] / lib / string / tcscat.h
1 /* $Id$
2  */
3
4 #include <tchar.h>
5
6 _TCHAR * _tcscat(_TCHAR * s, const _TCHAR * append)
7 {
8  _TCHAR * save = s;
9
10  for(; *s; ++s);
11
12  while((*s++ = *append++));
13
14  return save;
15 }
16
17 /* EOF */