unifork.old/include/utils/stringutils.hpp
StackZ 779a7c6479 Add Fade effects.
Also change me to `SuperSaiyajinStackie`.

Also update for latest Universal-Core changes.
2020-05-27 13:49:37 +02:00

12 lines
No EOL
231 B
C++

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