1234567891011121314151617181920 |
- /*!
- * \file include/utils/strings.h
- * \brief String handling utilities
- *
- * \author xythobuz
- */
-
- #ifndef _UTILS_STRINGS_H_
- #define _UTILS_STRINGS_H_
-
- #include <string>
-
- std::string findAndReplace(std::string s, std::string find, std::string replace);
-
- std::string expandHomeDirectory(std::string s);
-
- bool stringEndsWith(std::string s, std::string suffix);
-
- #endif
|