Q2. Write an assembly language procedure named “equalsIgnoreCase”, which receives two strings and their sizes, and retur
Posted: Wed Apr 27, 2022 3:47 pm
Q2. Write an assembly language procedure named “equalsIgnoreCase”, which receives two strings and their sizes, and returns true if the two strings contain the same characters irrespective of the case. For example, for strings {“aBc”} and {“Abc”} the function returns true, but for {“aBc”} and {“aB”}, or {“aBc”} and {“Xbz”}, the function returns false. Write a generic procedure that must handle all checks and conditions.