]> git.tdb.fi Git - libs/core.git/blob - source/core/environ.h
Add wrappers for environment manipulation functions
[libs/core.git] / source / core / environ.h
1 #ifndef ENVIRON_H_
2 #define ENVIRON_H_
3
4 #include <string>
5
6 namespace Msp {
7
8 std::string getenv(const std::string &);
9 void setenv(const std::string &, const std::string &);
10 void unsetenv(const std::string &);
11
12 } // namespace Msp
13
14 #endif