lunch-rest/environment.hpp

10 lines
143 B
C++
Raw Normal View History

2020-09-20 14:27:49 +00:00
#ifndef ENVIRONMENT_H
#define ENVIRONMENT_H
#include <string>
void setupEnv(char **env);
std::string getEnv(const std::string &env);
#endif