ReactOS 0.4.15-dev-7994-gb388cb6
tcscat.h File Reference
#include <tchar.h>
Include dependency graph for tcscat.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

_TCHAR_tcscat (_TCHAR *s, const _TCHAR *append)
 

Function Documentation

◆ _tcscat()

_TCHAR * _tcscat ( _TCHAR s,
const _TCHAR append 
)

Definition at line 8 of file tcscat.h.

9{
10 _TCHAR * save = s;
11
12 for(; *s; ++s);
13
14 while((*s++ = *append++));
15
16 return save;
17}
GLdouble s
Definition: gl.h:2039
char _TCHAR
Definition: tchar.h:1392
static void append(struct dump_context *dc, const void *data, unsigned size)
Definition: minidump.c:397