diff options
| author | Peter Jones <pjones@redhat.com> | 2021-02-20 12:32:48 -0500 |
|---|---|---|
| committer | Jan Setje-Eilers <73182357+jsetje@users.noreply.github.com> | 2021-03-09 13:52:53 -0800 |
| commit | 758b795a86589994065099d0af02eb30626a3c21 (patch) | |
| tree | 945365106dec43ce932bf46230c4b7c98ed60e9b /Cryptlib/Library/BaseLib.h | |
| parent | c61bfdc8a34fea1c6ea97ac0fb9c99f34f980381 (diff) | |
| download | efi-boot-shim-758b795a86589994065099d0af02eb30626a3c21.tar.gz efi-boot-shim-758b795a86589994065099d0af02eb30626a3c21.zip | |
Cryptlib: make some Str*() args const.
Diffstat (limited to 'Cryptlib/Library/BaseLib.h')
| -rw-r--r-- | Cryptlib/Library/BaseLib.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Cryptlib/Library/BaseLib.h b/Cryptlib/Library/BaseLib.h index 5d326844..93d5c691 100644 --- a/Cryptlib/Library/BaseLib.h +++ b/Cryptlib/Library/BaseLib.h @@ -2,8 +2,8 @@ #include <efilib.h> UINT32 WriteUnaligned32 (UINT32 *Buffer, UINT32 Value); -UINTN AsciiStrSize (CHAR8 *string); -char *AsciiStrnCpy(char *Destination, char *Source, UINTN count); -char *AsciiStrCat(char *Destination, char *Source); -CHAR8 *AsciiStrCpy(CHAR8 *Destination, CHAR8 *Source); -UINTN AsciiStrDecimalToUintn(const char *String); +UINTN AsciiStrSize (const CHAR8 *string); +CHAR8 *AsciiStrnCpy(CHAR8 *Destination, const CHAR8 *Source, UINTN count); +CHAR8 *AsciiStrCat(CHAR8 *Destination, const CHAR8 *Source); +CHAR8 *AsciiStrCpy(CHAR8 *Destination, const CHAR8 *Source); +UINTN AsciiStrDecimalToUintn(const CHAR8 *String); |
