Proper kernel

This commit is contained in:
2026-02-26 18:11:24 +00:00
parent f266dd7c8c
commit 4d447d3dec
7 changed files with 490 additions and 70 deletions

11
string_utils.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef STRING_UTILS_H
#define STRING_UTILS_H
#include <efi.h>
BOOLEAN is_space16(CHAR16 Ch);
CHAR16 ascii_lower16(CHAR16 Ch);
BOOLEAN ascii_streq_ci(const CHAR16 *A, const CHAR16 *B);
void trim_spaces_inplace(CHAR16 *Cmd);
#endif