/** * @file tools.h * @brief Declaration of miscellaneous tools. * @author Andreas Aardal Hanssen * @date 2002-2005 */ #include #include namespace Binc::Tools { void setenv(const std::string &key, const std::string &value); std::optional getenv(const std::string &key); }