mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-08 11:08:53 +00:00
11 lines
269 B
C++
11 lines
269 B
C++
// Prototypes for executing builtin_command function.
|
|
#ifndef FISH_BUILTIN_COMMAND_H
|
|
#define FISH_BUILTIN_COMMAND_H
|
|
|
|
#include "maybe.h"
|
|
|
|
class parser_t;
|
|
struct io_streams_t;
|
|
|
|
maybe_t<int> builtin_command(parser_t &parser, io_streams_t &streams, wchar_t **argv);
|
|
#endif
|