1 /*** 2 *mbsncat_s_l.c - concatenate string2 onto string1, max length n 3 * 4 * Copyright (c) Microsoft Corporation. All rights reserved. 5 * 6 *Purpose: 7 * defines mbsncat_s_l() - concatenate maximum of n characters 8 * 9 *******************************************************************************/ 10 #ifndef _MBCS 11 #error This file should only be compiled with _MBCS defined 12 #endif 13 14 #include <corecrt_internal_mbstring.h> 15 #include <corecrt_internal_securecrt.h> 16 17 #define _FUNC_NAME _mbsncat_s_l 18 #define _COUNT _CountInChars 19 #define _COUNT_IN_BYTES 0 20 21 #include "mbsncat_s.inl" 22