X-Git-Url: https://code.delx.au/refind/blobdiff_plain/f2ca6908795807bef841b1c98f10c47c831d2c41..7c8edbc48e5df2c1f20968dd4949703621252297:/EfiLib/BmLib.c diff --git a/EfiLib/BmLib.c b/EfiLib/BmLib.c index 4e7ebaa..99598b8 100644 --- a/EfiLib/BmLib.c +++ b/EfiLib/BmLib.c @@ -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