33 std::string
getEnv(
const std::string & estr )
35 char * e = getenv(estr.c_str());
37 if(e)
return std::string(e);
38 else return std::string(
"");
Utilities for working with the environment.
std::string getEnv(const std::string &estr)
Return the value of an environment variable.