add some methods for case-insensitive string compares
authorChris Lattner <sabre@nondot.org>
Thu, 26 Jan 2006 20:36:29 +0000 (20:36 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 26 Jan 2006 20:36:29 +0000 (20:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25659 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/StringExtras.h

index 32f9b0c9079de68e3da86aa88c7b0c79ad76eee1..bd8333909c472aa137520873be48bf4e0f0305e1 100644 (file)
@@ -113,6 +113,27 @@ static inline std::string LowercaseString(const std::string &S) {
   return result;
 }
 
+/// StringsEqualNoCase - Return true if the two strings are equal, ignoring
+/// case.
+static inline bool StringsEqualNoCase(const std::string &LHS, 
+                                      const std::string &RHS) {
+  if (LHS.size() != RHS.size()) return false;
+  for (unsigned i = 0, e = LHS.size(); i != e; ++i)
+    if (tolower(LHS[i]) != tolower(RHS[i])) return false;
+  return true;
+}
+
+/// StringsEqualNoCase - Return true if the two strings are equal, ignoring
+/// case.
+static inline bool StringsEqualNoCase(const std::string &LHS, 
+                                      const char *RHS) {
+  for (unsigned i = 0, e = LHS.size(); i != e; ++i) {
+    if (RHS[i] == 0) return false;  // RHS too short.
+    if (tolower(LHS[i]) != tolower(RHS[i])) return false;
+  }
+  return RHS[LHS.size()] == 0;  // Not too long?
+}
+
 /// getToken - This function extracts one token from source, ignoring any
 /// leading characters that appear in the Delimiters string, and ending the
 /// token at any of the characters that appear in the Delimiters string.  If