summaryrefslogtreecommitdiffstats
path: root/src/boot/efi/util.h
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2021-08-14 14:02:16 +0200
committerJan Janssen <medhefgo@web.de>2021-08-17 13:53:07 +0200
commitc005f4375e267245fd6054d215303b9bd08641d3 (patch)
treedb48ca58f9acb694330b67bb35c71ac3301a65a2 /src/boot/efi/util.h
parentsd-boot: Fix marking EFI var default entry (diff)
downloadsystemd-c005f4375e267245fd6054d215303b9bd08641d3.tar.xz
systemd-c005f4375e267245fd6054d215303b9bd08641d3.zip
sd-boot: Introduce print_at helper function
Diffstat (limited to '')
-rw-r--r--src/boot/efi/util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/boot/efi/util.h b/src/boot/efi/util.h
index f620f14212..9eef51cc7e 100644
--- a/src/boot/efi/util.h
+++ b/src/boot/efi/util.h
@@ -91,3 +91,5 @@ static inline VOID *mempmem_safe(const VOID *haystack, UINTN haystack_len, const
CHAR8 *p = memmem_safe(haystack, haystack_len, needle, needle_len);
return p ? p + needle_len : NULL;
}
+
+VOID print_at(UINTN x, UINTN y, UINTN attr, const CHAR16 *str);