| 70 | } |
| 71 | |
| 72 | std::vector<std::string> env(const char* name) |
| 73 | { |
| 74 | auto* p = std::getenv(name); |
| 75 | if(p == nullptr) |
| 76 | return {}; |
| 77 | return {{p}}; |
| 78 | } |
| 79 | |
| 80 | std::map<std::string, std::string> get_all_envs() |
| 81 | { |
no outgoing calls
no test coverage detected