mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-02 23:12:02 +08:00
17 lines
450 B
C++
17 lines
450 B
C++
|
// Prototypes for functions that react to environment variable changes
|
||
|
#ifndef FISH_ENV_DISPATCH_H
|
||
|
#define FISH_ENV_DISPATCH_H
|
||
|
|
||
|
#include "config.h" // IWYU pragma: keep
|
||
|
|
||
|
#include "common.h"
|
||
|
#include "env.h"
|
||
|
|
||
|
/// Initialize variable dispatch.
|
||
|
void env_dispatch_init(const environment_t &vars);
|
||
|
|
||
|
/// React to changes in variables like LANG which require running some code.
|
||
|
void env_dispatch_var_change(const wcstring &key, env_stack_t &vars);
|
||
|
|
||
|
#endif
|