2014-04-07 22:25:44 +02:00
|
|
|
#ifndef env_vars_hh_INCLUDED
|
|
|
|
#define env_vars_hh_INCLUDED
|
|
|
|
|
2015-09-16 20:04:19 +02:00
|
|
|
#include "id_map.hh"
|
2014-04-07 22:25:44 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2014-11-12 22:27:07 +01:00
|
|
|
class String;
|
2015-09-16 20:04:19 +02:00
|
|
|
using EnvVarMap = IdMap<String, MemoryDomain::EnvVars>;
|
2014-04-07 22:25:44 +02:00
|
|
|
|
|
|
|
EnvVarMap get_env_vars();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // env_vars_hh_INCLUDED
|