mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-06-14 01:11:25 +00:00
10 lines
353 B
C
10 lines
353 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);
|
|
CHAR8 *AsciiStrCpy(CHAR8 *Destination, CHAR8 *Source);
|
|
UINTN AsciiStrDecimalToUintn(const char *String);
|