// // strcpy_s.cpp // // Copyright (c) Microsoft Corporation. All rights reserved. // // Defines strcpy_s(), which copies a string from one buffer to another. // #include #include extern "C" errno_t __cdecl strcpy_s( char* const destination, size_t const size_in_elements, char const* const source ) { return common_tcscpy_s(destination, size_in_elements, source); }