2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-24 02:35:55 +00:00
fish-shell/src/builtin_set.h

11 lines
265 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;
maybe_t<int> builtin_set(parser_t &parser, io_streams_t &streams, wchar_t **argv);
#endif