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