#ifndef __TOKENIZE_UTIL__ #define __TOKENIZE_UTIL__ #include #include std::vector token_split(const std::string& text); std::vector split_with_special_tokens(const std::string& text, const std::vector& special_tokens); #endif // __TOKENIZE_UTIL__