]> git.proxmox.com Git - mirror_edk2.git/blame - CryptoPkg/Library/IntrinsicLib/CopyMem.c
edk2: Update additional licenses in Readme.md
[mirror_edk2.git] / CryptoPkg / Library / IntrinsicLib / CopyMem.c
CommitLineData
97f98500
HT
1/** @file\r
2 Intrinsic Memory Routines Wrapper Implementation for OpenSSL-based\r
3 Cryptographic Library.\r
4\r
5Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>\r
2009f6b4 6SPDX-License-Identifier: BSD-2-Clause-Patent\r
97f98500
HT
7\r
8**/\r
9\r
10#include <Base.h>\r
11#include <Library/BaseMemoryLib.h>\r
12\r
13/* Copies bytes between buffers */\r
14void * memcpy (void *dest, const void *src, unsigned int count)\r
15{\r
16 return CopyMem (dest, src, (UINTN)count);\r
17}\r