summaryrefslogtreecommitdiff
path: root/src/env_vars.hh
blob: 89d3459eb513c1cd479667f9e8e8831f81c63922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef env_vars_hh_INCLUDED
#define env_vars_hh_INCLUDED

#include <unordered_map>

namespace Kakoune
{

class String;
using EnvVarMap = std::unordered_map<String, String>;

EnvVarMap get_env_vars();

}

#endif // env_vars_hh_INCLUDED