]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/environ.h
Add wrappers for environment manipulation functions
[libs/core.git] / source / core / environ.h
diff --git a/source/core/environ.h b/source/core/environ.h
new file mode 100644 (file)
index 0000000..67fde05
--- /dev/null
@@ -0,0 +1,14 @@
+#ifndef ENVIRON_H_
+#define ENVIRON_H_
+
+#include <string>
+
+namespace Msp {
+
+std::string getenv(const std::string &);
+void setenv(const std::string &, const std::string &);
+void unsetenv(const std::string &);
+
+} // namespace Msp
+
+#endif