blob: 95c28d66b92a4e63ff4bbc03e044e47e8b4c555f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/** --------------------------------------------------------------------
* @file tools.cc
* @brief Implementation of miscellaneous tools.
* @author Andreas Aardal Hanssen
* @date 2002-2005
* ------------------------------------------------------------------ **/
#include "tools.h"
#include <cstring>
#include <errno.h>
using namespace ::std;
using namespace Binc;
//------------------------------------------------------------------------
Tools::Tools(void) {}
//------------------------------------------------------------------------
Tools &Tools::getInstance(void)
{
static Tools tools;
return tools;
}
//------------------------------------------------------------------------
void Tools::setenv(const string &key, const string &value) const
{
char *c = strdup((key + "=" + value).c_str());
putenv(c);
}
//------------------------------------------------------------------------
string Tools::getenv(const string &key) const
{
static const string NIL = "";
const char *c = ::getenv((char *)key.c_str());
if (c == 0)
return NIL;
else
return string(c);
}
|