summaryrefslogtreecommitdiffstats
path: root/private/crt32/mbstring/mbscat.c
blob: 21430a5b3553907c1aa3e6bef5f076a2d1334ff0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/***
*mbscat.c - contains mbscat() and mbscpy()
*
*	Copyright (c) 1985-1992, Microsoft Corporation. All rights reserved.
*
*Purpose:
*	mbscpy() copies one string onto another.
*
*	mbscat() concatenates (appends) a copy of the source string to the
*	end of the destination string, returning the destination string.
*
*Revision History:
*	11-18-92  KRS	Identical to strcat/strcpy--could use alias records.
*
*******************************************************************************/

#ifdef _MBCS
#define strcat _mbscat
#define strcpy _mbscpy
#include "..\string\strcat.c"
#endif	/* _MBCS */