]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/Library/IntrinsicLib/CopyMem.c
CryptoPkg/OpensslLib: Exclude unnecessary files in process_files.pl
[mirror_edk2.git] / CryptoPkg / Library / IntrinsicLib / CopyMem.c
1 /** @file
2 Intrinsic Memory Routines Wrapper Implementation for OpenSSL-based
3 Cryptographic Library.
4
5 Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #include <Base.h>
11 #include <Library/BaseMemoryLib.h>
12
13 /* Copies bytes between buffers */
14 void * memcpy (void *dest, const void *src, unsigned int count)
15 {
16 return CopyMem (dest, src, (UINTN)count);
17 }