summaryrefslogtreecommitdiff
path: root/include/util/StringUtils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/util/StringUtils.hpp')
-rw-r--r--include/util/StringUtils.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/util/StringUtils.hpp b/include/util/StringUtils.hpp
index af8e82f..f2615e0 100644
--- a/include/util/StringUtils.hpp
+++ b/include/util/StringUtils.hpp
@@ -8,5 +8,7 @@
UTIL_DLL_VISIBLE bool stringicasecmp( const std::string &s1, const std::string &s2 );
UTIL_DLL_VISIBLE std::vector<std::string> split( const std::string &s, const std::string &delimiter, bool keepEmpty = true );
+UTIL_DLL_VISIBLE bool endswith( const std::string &s, const std::string &endstring );
+UTIL_DLL_VISIBLE bool startswith( const std::string &s, const std::string &startstring );
#endif