summaryrefslogtreecommitdiffstats
path: root/CryptoPkg/Library/IntrinsicLib/CopyMem.c
blob: e29b4918d2005f1c2ba4322b453d6c121df4b5c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** @file
  Intrinsic Memory Routines Wrapper Implementation for OpenSSL-based
  Cryptographic Library.

Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent

**/

#include <Base.h>
#include <Library/BaseMemoryLib.h>

/* Copies bytes between buffers */
void * memcpy (void *dest, const void *src, unsigned int count)
{
  return CopyMem (dest, src, (UINTN)count);
}