fish-shell/src/builtins/set.h

13 lines
295 B
C++
Raw Normal View History

// Prototypes for functions for executing builtin_set functions.
#ifndef FISH_BUILTIN_SET_H
#define FISH_BUILTIN_SET_H
#include <cwchar>
#include "../maybe.h"
class parser_t;
struct io_streams_t;
maybe_t<int> builtin_set(parser_t &parser, io_streams_t &streams, const wchar_t **argv);
#endif