summaryrefslogtreecommitdiff
path: root/src/utils/stringutils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/stringutils.h')
-rw-r--r--src/utils/stringutils.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/utils/stringutils.h b/src/utils/stringutils.h
index 73e4b7697..31f562587 100644
--- a/src/utils/stringutils.h
+++ b/src/utils/stringutils.h
@@ -222,9 +222,15 @@ bool findFirst(const std::string &restrict str1,
bool findCutLast(std::string &restrict str1,
const std::string &restrict str2) A_WARN_UNUSED;
+void cutLast(std::string &restrict str1,
+ const std::string &restrict str2);
+
bool findCutFirst(std::string &restrict str1,
const std::string &restrict str2);
+void cutFirst(std::string &restrict str1,
+ const std::string &restrict str2);
+
std::string &removeProtocol(std::string &url);
bool strStartWith(const std::string &restrict str,