reactos/sdk/lib/ucrt/mbstring/mbsncat_s.cpp

16 lines
525 B
C++

/***
*mbsncat_s.c - concatenate string2 onto string1, max length n
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* defines mbsncat_s() - concatenate maximum of n characters
*
*******************************************************************************/
#ifndef _MBCS
#error This file should only be compiled with _MBCS defined
#endif
#include <corecrt_internal_mbstring.h>
_REDIRECT_TO_L_VERSION_4(errno_t, _mbsncat_s, unsigned char *, size_t, const unsigned char *, size_t)