unifork.old/include/utils/stringutils.hpp
2020-06-27 09:15:29 +02:00

12 lines
No EOL
271 B
C++

#ifndef _UNIVERSAL_UPDATER_STRING_UTILS_HPP
#define _UNIVERSAL_UPDATER_STRING_UTILS_HPP
#include "common.hpp"
bool matchPattern(std::string pattern, std::string tested);
namespace StringUtils {
std::string format(const std::string& fmt_str, ...);
}
#endif