YYCCommonplace/src/StringHelper.hpp

16 lines
364 B
C++
Raw Normal View History

2024-04-25 10:38:13 +08:00
#pragma once
#include <string>
#include <cstdarg>
namespace YYCC::StringHelper {
bool Printf(std::string& strl, const char* format, ...);
bool VPrintf(std::string& strl, const char* format, va_list argptr);
std::string Printf(const char* format, ...);
std::string VPrintf(const char* format, va_list argptr);
2024-05-20 21:41:48 +08:00
//std::string Join(const char* decilmer);
2024-04-26 15:37:28 +08:00
2024-04-25 10:38:13 +08:00
}