X-Git-Url: https://code.delx.au/refind/blobdiff_plain/11fa7da805c3e263f8b05339f1900baa73a2ffd4..346735a39ca8b64c8278ba342a633b5acce0159b:/EfiLib/BmLib.c diff --git a/EfiLib/BmLib.c b/EfiLib/BmLib.c index 4feddd5..99598b8 100644 --- a/EfiLib/BmLib.c +++ b/EfiLib/BmLib.c @@ -17,7 +17,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #else #include "gnuefi-helper.h" #endif -#include "refit_call_wrapper.h" +#include "../include/refit_call_wrapper.h" /** @@ -119,22 +119,6 @@ EfiStrDuplicate ( return Dest; } -//Compare strings case insensitive -INTN -EFIAPI -StriCmp ( - IN CONST CHAR16 *FirstString, - IN CONST CHAR16 *SecondString - ) -{ - - while ((*FirstString != L'\0') && ((*FirstString & ~0x20) == (*SecondString & ~0x20))) { - FirstString++; - SecondString++; - } - return *FirstString - *SecondString; -} - /** Function gets the file information from an open file descriptor, and stores it