#ifndef __STRING_UTILS_H__ #define __STRING_UTILS_H__ #include #include std::string& trim(std::string &s); void split(std::vector result, std::string source, std::string mark); #endif