#ifndef STRINGAUX_HPP #define STRINGAUX_HPP #include #include #include std::vector split(std::string s, std::string delimiters); std::string trim(std::string& source); std::expected strtoint (std::string source); #endif