ReactOS
0.4.15-dev-1632-g4e289ce
tcscat.h
Go to the documentation of this file.
1
2
#include <tchar.h>
3
4
#ifdef _MSC_VER
5
#pragma function(_tcscat)
6
#endif
/* _MSC_VER */
7
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 */
append
static void append(struct dump_context *dc, const void *data, unsigned size)
Definition:
minidump.c:397
_TCHAR
char _TCHAR
Definition:
tchar.h:1392
s
GLdouble s
Definition:
gl.h:2039
_tcscat
_TCHAR * _tcscat(_TCHAR *s, const _TCHAR *append)
Definition:
tcscat.h:8
sdk
lib
crt
string
tcscat.h
Generated on Fri Jan 22 2021 06:09:55 for ReactOS by
1.8.15