7 lines
161 B
C++
7 lines
161 B
C++
namespace Utils
|
|
{
|
|
const char *VA(const char *fmt, ...);
|
|
std::string StrToLower(std::string input);
|
|
bool EndsWith(const char* heystack, const char* needle);
|
|
}
|