X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fenviron.h;fp=source%2Fcore%2Fenviron.h;h=67fde05881651f467a87fbb4481f167ffea5aa55;hp=0000000000000000000000000000000000000000;hb=f804a61c1c58529e7c98555a921b56bc05059d5e;hpb=31cc8f0c6e874e2417e76eda50af34fd17bcd90c diff --git a/source/core/environ.h b/source/core/environ.h new file mode 100644 index 0000000..67fde05 --- /dev/null +++ b/source/core/environ.h @@ -0,0 +1,14 @@ +#ifndef ENVIRON_H_ +#define ENVIRON_H_ + +#include + +namespace Msp { + +std::string getenv(const std::string &); +void setenv(const std::string &, const std::string &); +void unsetenv(const std::string &); + +} // namespace Msp + +#endif