15 lines
228 B
C++
15 lines
228 B
C++
|
#ifndef CPPSCRIPTS_HELPERS_HPP
|
||
|
#define CPPSCRIPTS_HELPERS_HPP
|
||
|
|
||
|
#include <string>
|
||
|
#include <string_view>
|
||
|
|
||
|
namespace helpers
|
||
|
{
|
||
|
|
||
|
std::string get_env(std::string_view name);
|
||
|
|
||
|
} // namespace helpers
|
||
|
|
||
|
#endif // CPPSCRIPTS_HELPERS_HPP
|