unifork.old/include/utils/stringutils.hpp
StackZ 09be8e0b94
Switch over to Universal-Core. (#18)
* Don't build here.

* WIP: Switch to Universal-Core.

* Update Submodule repo & azure-pipelines.
2020-02-08 06:20:50 +01:00

13 lines
No EOL
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