ReactOS 0.4.16-dev-2633-g8dc9e50
strcpy_s.cpp
Go to the documentation of this file.
1//
2// strcpy_s.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines strcpy_s(), which copies a string from one buffer to another.
7//
9#include <string.h>
10
11
12
14 char* const destination,
15 size_t const size_in_elements,
16 char const* const source
17 )
18{
19 return common_tcscpy_s(destination, size_in_elements, source);
20}
size_t const size_in_elements
int errno_t
Definition: corecrt.h:249
#define __cdecl
Definition: corecrt.h:121
errno_t __cdecl strcpy_s(char *const destination, size_t const size_in_elements, char const *const source)
Definition: strcpy_s.cpp:13