summaryrefslogtreecommitdiff
path: root/src/utils/string.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/string.hpp')
-rw-r--r--src/utils/string.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/utils/string.hpp b/src/utils/string.hpp
new file mode 100644
index 0000000..84ba101
--- /dev/null
+++ b/src/utils/string.hpp
@@ -0,0 +1,10 @@
+#pragma once
+
+
+#include <vector>
+#include <string>
+
+bool to_bool(const std::string& val);
+std::vector<std::string> cut(const std::string& val, const std::size_t size);
+
+