mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
20 lines
235 B
C
20 lines
235 B
C
|
|
#include <tchar.h>
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma function(_tcscat)
|
|
#endif /* _MSC_VER */
|
|
|
|
_TCHAR * _tcscat(_TCHAR * s, const _TCHAR * append)
|
|
{
|
|
_TCHAR * save = s;
|
|
|
|
for(; *s; ++s);
|
|
|
|
while((*s++ = *append++));
|
|
|
|
return save;
|
|
}
|
|
|
|
/* EOF */
|