JKSV/Include/StringUtil.hpp
2024-12-05 20:04:47 -05:00

8 lines
118 B
C++

#pragma once
#include <string>
namespace StringUtil
{
std::string GetFormattedString(const char *Format, ...);
}