1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-08 05:17:56 +00:00
reactos/lib/sdk/crt/string/tcscat.h

18 lines
182 B
C
Raw Normal View History

/* $Id$
*/
#include <tchar.h>
_TCHAR * _tcscat(_TCHAR * s, const _TCHAR * append)
{
_TCHAR * save = s;
for(; *s; ++s);
while((*s++ = *append++));
return save;
}
/* EOF */