| 38 | namespace OpenRCT2::Platform |
| 39 | { |
| 40 | std::string GetEnvironmentVariable(std::string_view name) |
| 41 | { |
| 42 | return String::toStd(getenv(std::string(name).c_str())); |
| 43 | } |
| 44 | |
| 45 | std::string GetEnvironmentPath(const char* name) |
| 46 | { |
no test coverage detected