#ifndef UTILS_H #define UTILS_H #include #include #include bool replace(std::string &str, const std::string &from, const std::string &to); bool replace(std::string &str, const char *from, const char *to); void ansi_clean(std::string &str); void high_ascii(std::string &str); std::smatch ansi_newline(const std::string &str); std::string clean_string(const std::string &source); std::vector split(const std::string &line); #endif