mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:33:16 +00:00
- Sync some changes in strings from libcntpr.
- Move string implementation (in "header" files) into /string dir. - Copy over libcntpr-specific implementations into _nt.c files (for now, later they could do with a define). - libcntpr's is now almost fully syncronized and could be merged into the tree except for "except" directory. svn path=/trunk/; revision=30283
This commit is contained in:
parent
c8a87ec7b8
commit
375959c206
46 changed files with 502 additions and 246 deletions
17
reactos/lib/sdk/crt/string/tcscat.h
Normal file
17
reactos/lib/sdk/crt/string/tcscat.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
/* $Id$
|
||||
*/
|
||||
|
||||
#include <tchar.h>
|
||||
|
||||
_TCHAR * _tcscat(_TCHAR * s, const _TCHAR * append)
|
||||
{
|
||||
_TCHAR * save = s;
|
||||
|
||||
for(; *s; ++s);
|
||||
|
||||
while((*s++ = *append++));
|
||||
|
||||
return save;
|
||||
}
|
||||
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue