//////////////////////////////////////////////////////////////////// #ifndef __RAT_StringUtil__ #define __RAT_StringUtil__ #include namespace RAT { void pop_first_word(std::string in, std::string &first, std::string &rest); std::string xor_encdec(const std::string &toEncrypt, const std::string &key = "SNO+"); } // namespace RAT #endif