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.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/bot/src/utils/string.hpp b/bot/src/utils/string.hpp
index c8385ad..c1f0121 100644
--- a/bot/src/utils/string.hpp
+++ b/bot/src/utils/string.hpp
@@ -27,6 +27,9 @@ namespace bot {
}
bool string_contains_sql_injection(const std::string &input);
+
+ std::vector<std::vector<std::string>> separate_by_length(
+ const std::vector<std::string> &vector, const int &max_length);
}
}
}