mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-03 08:39:05 +00:00
09be8e0b94
* Don't build here. * WIP: Switch to Universal-Core. * Update Submodule repo & azure-pipelines.
13 lines
232 B
C++
13 lines
232 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 |