mirror of
https://github.com/reactos/reactos.git
synced 2025-06-11 13:48:28 +00:00
16 lines
170 B
C
16 lines
170 B
C
![]() |
|
||
|
#include <tchar.h>
|
||
|
|
||
|
_TCHAR * _tcscat(_TCHAR * s, const _TCHAR * append)
|
||
|
{
|
||
|
_TCHAR * save = s;
|
||
|
|
||
|
for(; *s; ++s);
|
||
|
|
||
|
while((*s++ = *append++));
|
||
|
|
||
|
return save;
|
||
|
}
|
||
|
|
||
|
/* EOF */
|