summaryrefslogtreecommitdiffstats
path: root/private/crt32/mbstring/mbscat.c
diff options
context:
space:
mode:
Diffstat (limited to 'private/crt32/mbstring/mbscat.c')
-rw-r--r--private/crt32/mbstring/mbscat.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/private/crt32/mbstring/mbscat.c b/private/crt32/mbstring/mbscat.c
new file mode 100644
index 000000000..21430a5b3
--- /dev/null
+++ b/private/crt32/mbstring/mbscat.c
@@ -0,0 +1,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 */