ReactOS 0.4.16-dev-937-g7afcd2a
strncat_s.cpp
Go to the documentation of this file.
1//
2// strncat_s.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines strncat_s(), which appends n characters of the source string onto the
7// end of the destination string.
8//
10#include <string.h>
11
12
13
15 char* const destination,
16 size_t const size_in_elements,
17 char const* const source,
18 size_t const count
19 )
20{
21 return common_tcsncat_s(destination, size_in_elements, source, count);
22}
#define __cdecl
Definition: accygwin.h:79
size_t const size_in_elements
GLuint GLuint GLsizei count
Definition: gl.h:1545
_In_opt_ _Locale strncat_s
Definition: string.h:263
int errno_t
Definition: corecrt.h:615