mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-07-02 22:24:00 +00:00
9 lines
298 B
C
9 lines
298 B
C
#include <efi.h>
|
|
#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);
|
|
UINTN AsciiStrDecimalToUintn(const char *String);
|