17 lines
234 B
C++
17 lines
234 B
C++
#ifndef env_vars_hh_INCLUDED
|
|
#define env_vars_hh_INCLUDED
|
|
|
|
#include "id_map.hh"
|
|
|
|
namespace Kakoune
|
|
{
|
|
|
|
class String;
|
|
using EnvVarMap = IdMap<String, MemoryDomain::EnvVars>;
|
|
|
|
EnvVarMap get_env_vars();
|
|
|
|
}
|
|
|
|
#endif // env_vars_hh_INCLUDED
|