Files
libspinscale/src/runtime.cpp
T

13 lines
263 B
C++
Raw Normal View History

2026-02-22 17:38:53 -04:00
#include <spinscale/runtime.h>
namespace sscl {
CrtCommandLineArgs crtCommandLineArgs(0, nullptr, nullptr);
void CrtCommandLineArgs::set(int argc, char *argv[], char *envp[])
{
crtCommandLineArgs = CrtCommandLineArgs(argc, argv, envp);
}
} // namespace sscl