#pragma once #include #include #include namespace izo { std::optional GetEnvVar(std::string_view name); bool SetEnvVar(std::string_view name, std::string_view value, std::string* errorMessage = nullptr); bool UnsetEnvVar(std::string_view name, std::string* errorMessage = nullptr); } // namespace izo