summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-05-07 18:35:46 +0000
committerTed Kremenek <kremenek@apple.com>2008-05-07 18:35:46 +0000
commit3a9fa4e36075fdb1aca294045e1ab52f63da746b (patch)
tree3f0d7e31d6ff4f9ab6a72d8ba8c353733103675e
parent9a35f1b70241916069ba897c11e79c61dd5e422a (diff)
downloadbcm5719-llvm-3a9fa4e36075fdb1aca294045e1ab52f63da746b.tar.gz
bcm5719-llvm-3a9fa4e36075fdb1aca294045e1ab52f63da746b.zip
Added CStrInCStrNoCase, a portable implementation of strcasestr.
llvm-svn: 50821
-rw-r--r--llvm/include/llvm/ADT/StringExtras.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/llvm/include/llvm/ADT/StringExtras.h b/llvm/include/llvm/ADT/StringExtras.h
index 3bfd3f5c727..9a3e1b51595 100644
--- a/llvm/include/llvm/ADT/StringExtras.h
+++ b/llvm/include/llvm/ADT/StringExtras.h
@@ -141,6 +141,30 @@ static inline bool StringsEqualNoCase(const std::string &LHS,
}
return RHS[LHS.size()] == 0; // Not too long?
}
+
+/// CStrInCStrNoCase - Portable version of strcasestr. Locates the first
+/// occurance of c-string 's1' in string 's2', ignoring case. Returns
+/// NULL if 's1' cannot be found.
+static inline const char* CStrInCStrNoCase(const char *s1, const char *s2) {
+
+ // Are either strings NULL?
+ if (!s1 || !s2)
+ return 0;
+
+ const char *I1=s1, *I2=s2;
+
+ while (*I1 != '\0' || *I2 != '\0' )
+ if (tolower(*I1) != tolower(*I2)) { // No match. Start over.
+ ++s1; I1 = s1; I2 = s2;
+ }
+ else { // Character match. Advance to the next character.
+ ++I1; ++I2;
+ }
+
+ // If we exhausted all of the characters in 's2', then 's1' does not occur
+ // in it.
+ return *I2 == '\0' ? 0 : I1;
+}
/// getToken - This function extracts one token from source, ignoring any
/// leading characters that appear in the Delimiters string, and ending the
OpenPOWER on IntegriCloud