mbsncpy_s.c
来自「C语言库函数的原型,有用的拿去」· C语言 代码 · 共 37 行
C
37 行
/***
*mbsncpy_s.c - Copy one string to another, n chars only (MBCS)
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* Copy one string to another, n chars only (MBCS)
*
*******************************************************************************/
#ifdef _MBCS
#include <mbstring.h>
#ifdef _SYSCRT
#include <internal_safecrt.h>
#define _FUNC_PROLOGUE
#define _FUNC_NAME _mbsncpy_s
#define _DEST _Dst
#define _SRC _Src
#define _COUNT _CountInChars
#define _COUNT_IN_BYTES 0
#include <mbsncpy_s.inl>
#else /* _SYSCRT */
#include <internal.h>
_REDIRECT_TO_L_VERSION_4(errno_t, _mbsncpy_s, unsigned char *, size_t, const unsigned char *, size_t)
#endif /* _SYSCRT */
#endif /* _MBCS */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?