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