summaryrefslogtreecommitdiff
path: root/Cryptlib/Library/BaseMemoryLib.h
diff options
context:
space:
mode:
authorSteve Langasek <steve.langasek@canonical.com>2016-09-19 15:36:20 -0700
committerSteve Langasek <steve.langasek@canonical.com>2016-09-19 15:36:20 -0700
commit6af9d134b88e5350ff71af67d0245831358f0c36 (patch)
tree6774d5cae8e1c24ce61f4e21f349bb91bc939d4a /Cryptlib/Library/BaseMemoryLib.h
parentc2f285a93f50edc40d6f2b8114e4f9af812398d0 (diff)
parent1442bd709766f1b82be26e93ad774f4a720d0a70 (diff)
downloadefi-boot-shim-6af9d134b88e5350ff71af67d0245831358f0c36.tar.gz
efi-boot-shim-6af9d134b88e5350ff71af67d0245831358f0c36.zip
New upstream release (fix-up commit)
Diffstat (limited to 'Cryptlib/Library/BaseMemoryLib.h')
-rw-r--r--Cryptlib/Library/BaseMemoryLib.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/Cryptlib/Library/BaseMemoryLib.h b/Cryptlib/Library/BaseMemoryLib.h
deleted file mode 100644
index 471a055a..00000000
--- a/Cryptlib/Library/BaseMemoryLib.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef __BASE_MEMORY_LIB__
-#define __BASE_MEMORY_LIB__
-
-CHAR8 *
-ScanMem8 (
- IN CHAR8 *Buffer,
- IN UINTN Size,
- IN CHAR8 Value
- );
-
-UINT32
-WriteUnaligned32(
- UINT32 *Buffer,
- UINT32 Value
- );
-
-CHAR8 *
-AsciiStrCat(
- CHAR8 *Destination,
- CHAR8 *Source
- );
-
-CHAR8 *
-AsciiStrCpy(
- CHAR8 *Destination,
- CHAR8 *Source
- );
-
-CHAR8 *
-AsciiStrnCpy(
- CHAR8 *Destination,
- CHAR8 *Source,
- UINTN count
- );
-
-UINTN
-AsciiStrSize(
- CHAR8 *string
- );
-
-#endif