supercell-wx/wxdata/include/scwx/util/environment.hpp
2023-07-14 00:21:12 -05:00

14 lines
241 B
C++

#pragma once
#include <string>
namespace scwx
{
namespace util
{
std::string GetEnvironment(const std::string& name);
void SetEnvironment(const std::string& name, const std::string& value);
} // namespace util
} // namespace scwx