mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-03 00:39:02 +00:00
779a7c6479
Also change me to `SuperSaiyajinStackie`. Also update for latest Universal-Core changes.
12 lines
231 B
C++
12 lines
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 |