summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2014-07-23 16:44:07 +0200
committerAndreas Baumann <abaumann@yahoo.com>2014-07-23 16:44:07 +0200
commita57788acee59705418b96525410b84fbee2f405a (patch)
tree660a828a29f0f769638ce18c1b45c62bd602e012 /include
parentce77513807f47bc7af59c8320932d3348aeb99ea (diff)
downloadcrawler-a57788acee59705418b96525410b84fbee2f405a.tar.gz
crawler-a57788acee59705418b96525410b84fbee2f405a.tar.bz2
added parsing of Sitemap in robots.txt
Diffstat (limited to 'include')
-rw-r--r--include/util/StringUtils.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/util/StringUtils.hpp b/include/util/StringUtils.hpp
new file mode 100644
index 0000000..c6b9f87
--- /dev/null
+++ b/include/util/StringUtils.hpp
@@ -0,0 +1,8 @@
+#ifndef __UTIL_STRING_UTILS_H
+#define __UTIL_STRING_UTILS_H
+
+#include <string>
+
+bool stringicasecmp( const std::string &s1, const std::string &s2 );
+
+#endif