📄 wcscat_s.c
字号:
/***
*wcscat_s.c - contains wcscat_s()
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* wcscat_s() appends one wchar_t string onto another.
*
* wcscat() concatenates (appends) a copy of the source string to the
* end of the destination string.
* Strings are wide-character strings.
*
*******************************************************************************/
#include <string.h>
#include <internal_securecrt.h>
#define _FUNC_PROLOGUE
#define _FUNC_NAME wcscat_s
#define _CHAR wchar_t
#define _DEST _Dst
#define _SIZE _SizeInWords
#define _SRC _Src
#include <tcscat_s.inl>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -