first commit

This commit is contained in:
2024-04-25 10:38:13 +08:00
commit b6cffd8a97
20 changed files with 1181 additions and 0 deletions

13
src/StringHelper.hpp Normal file
View File

@ -0,0 +1,13 @@
#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);
}