summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2014-10-15 17:00:12 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2014-10-15 17:00:12 +0200
commit14e5ae07984d3e898d452ec3ddda10afac01be54 (patch)
tree8e38f40e0052a792b63c4733525a28579db46ab2 /include
parent7c1364816bce2ecfad1ecc118225b1fa6f28faed (diff)
downloadcrawler-14e5ae07984d3e898d452ec3ddda10afac01be54.tar.gz
crawler-14e5ae07984d3e898d452ec3ddda10afac01be54.tar.bz2
first preliminary module searcher
Diffstat (limited to 'include')
-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