mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-29 06:13:20 +00:00
82eca4bc86
The main change here is to reorder headers.
22 lines
565 B
C++
22 lines
565 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 <memory>
|
|
|
|
#include "common.h"
|
|
#include "env_universal_common.h"
|
|
|
|
/// Initialize variable dispatch.
|
|
class environment_t;
|
|
void env_dispatch_init(const environment_t &vars);
|
|
|
|
class env_stack_t;
|
|
void env_dispatch_var_change(const wcstring &key, env_stack_t &vars);
|
|
void guess_emoji_width();
|
|
|
|
void env_universal_callbacks(env_stack_t *stack, const callback_data_list_t &callbacks);
|
|
|
|
#endif
|