blob: 1d86fca469f7cb994d902cab8b7a18e70d3f5219 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* @file tools.h
* @brief Declaration of miscellaneous tools.
* @author Andreas Aardal Hanssen
* @date 2002-2005
*/
#include <optional>
#include <string>
namespace Binc::Tools {
void setenv(const std::string &key, const std::string &value);
std::optional<std::string> getenv(const std::string &key);
}
|