mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-29 13:23:53 +08:00
82eca4bc86
The main change here is to reorder headers.
12 lines
256 B
C++
12 lines
256 B
C++
// Prototypes for functions for executing builtin_set functions.
|
|
#ifndef FISH_BUILTIN_SET_H
|
|
#define FISH_BUILTIN_SET_H
|
|
|
|
#include <cstring>
|
|
#include <cwchar>
|
|
|
|
class parser_t;
|
|
|
|
int builtin_set(parser_t &parser, io_streams_t &streams, wchar_t **argv);
|
|
#endif
|