mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
c501d8112c
svn path=/branches/aicom-network-fixes/; revision=34994
17 lines
182 B
C
17 lines
182 B
C
/* $Id$
|
|
*/
|
|
|
|
#include <tchar.h>
|
|
|
|
_TCHAR * _tcscat(_TCHAR * s, const _TCHAR * append)
|
|
{
|
|
_TCHAR * save = s;
|
|
|
|
for(; *s; ++s);
|
|
|
|
while((*s++ = *append++));
|
|
|
|
return save;
|
|
}
|
|
|
|
/* EOF */
|