00001 00025 #ifndef _STRINGUTILS_H_INCLUDED_ 00026 #define _STRINGUTILS_H_INCLUDED_ 00027 00028 void replace_str(std::string& to_change, const std::string& to_find, const std::string& replace_with); 00029 void escape_shell_chars(std::string& to_change); 00030 void remove_shell_chars(std::string& to_change); 00031 void expand_tilde(std::string& tochange); 00032 bool make_dir(const std::string& dir); 00033 00034 #endif // _STRINGUTILS_H_INCLUDED_