mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-21 02:21:32 +03:00
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
|