diff options
Diffstat (limited to 'common/str.h')
-rw-r--r-- | common/str.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/str.h b/common/str.h index cf7fc34f6b..7a1706b7e1 100644 --- a/common/str.h +++ b/common/str.h @@ -154,9 +154,13 @@ public: bool hasSuffix(const String &x) const; bool hasSuffix(const char *x) const; + bool hasSuffixIgnoreCase(const String &x) const; + bool hasSuffixIgnoreCase(const char *x) const; bool hasPrefix(const String &x) const; bool hasPrefix(const char *x) const; + bool hasPrefixIgnoreCase(const String &x) const; + bool hasPrefixIgnoreCase(const char *x) const; bool contains(const String &x) const; bool contains(const char *x) const; |