lunch-rest/environment.hpp
2020-09-20 16:27:49 +02:00

10 lines
143 B
C++

#ifndef ENVIRONMENT_H
#define ENVIRONMENT_H
#include <string>
void setupEnv(char **env);
std::string getEnv(const std::string &env);
#endif