mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
596 B
21 lines
596 B
/***
|
|
*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 */
|