summaryrefslogtreecommitdiff
path: root/bot/src/utils/string.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/utils/string.hpp')
-rw-r--r--bot/src/utils/string.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/bot/src/utils/string.hpp b/bot/src/utils/string.hpp
index c1f0121..18d4f9a 100644
--- a/bot/src/utils/string.hpp
+++ b/bot/src/utils/string.hpp
@@ -30,6 +30,11 @@ namespace bot {
std::vector<std::vector<std::string>> separate_by_length(
const std::vector<std::string> &vector, const int &max_length);
+
+ std::vector<std::string> separate_by_length(
+ const std::string &base, const std::vector<std::string> &values,
+ const std::string &prefix, const std::string &separator,
+ const long long &max_length);
}
}
}