libcmo21/Unvirt/StringHelper.hpp
yyc12345 5a69ce338e finish linux related code writting. remove all offensive content.
- REMOVE all offensive content in README and etc. This project respect to every contributors.
- However, for commercial reason, we limit the contribution from Dassault.
- Change license.
- Finish linux platform code.
2023-03-26 20:32:13 +08:00

12 lines
235 B
C++

#pragma once
#include <string>
#include <cstdarg>
namespace Unvirt::StringHelper {
void StdstringPrintf(std::string& strl, const char* format, ...);
void StdstringVPrintf(std::string& strl, const char* format, va_list argptr);
}