1 2 #include <tchar.h> 3 4 #ifdef _MSC_VER 5 #pragma function(_tcscat) 6 #endif /* _MSC_VER */ 7 _tcscat(_TCHAR * s,const _TCHAR * append)8_TCHAR * _tcscat(_TCHAR * s, const _TCHAR * append) 9 { 10 _TCHAR * save = s; 11 12 for(; *s; ++s); 13 14 while((*s++ = *append++)); 15 16 return save; 17 } 18 19 /* EOF */ 20