yyc12345
5a69ce338e
- 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.
12 lines
235 B
C++
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);
|
|
|
|
}
|