TianoCore EDK2 master
|
#include "MemLibInternals.h"
Go to the source code of this file.
Functions | |
VOID *EFIAPI | InternalMemCopyMem (OUT VOID *Destination, IN CONST VOID *Source, IN UINTN Length) |
VOID *EFIAPI | InternalMemSetMem (OUT VOID *Buffer, IN UINTN Size, IN UINT8 Value) |
Base Memory Library functions implementation bases on Uefi Boot Service.
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file MemLib.c.
Copies a source buffer to a destination buffer, and returns the destination buffer.
This function wraps the gBS->CopyMem().
DestinationBuffer | The pointer to the destination buffer of the memory copy. |
SourceBuffer | The pointer to the source buffer of the memory copy. |
Length | The number of bytes to copy from SourceBuffer to DestinationBuffer. |