blob: 1c8f001544c28a1bb997bc3fb4b2a6a8d7328203 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef STRING_UTILS_HPP_INCLUDED
#define STRING_UTILS_HPP_INCLUDED
#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);
#endif /* STRING_UTILS_HPP_INCLUDED */
|