2017-06-14 03:56:20 +08:00
|
|
|
// Prototypes for executing builtin_function function.
|
|
|
|
#ifndef FISH_BUILTIN_FUNCTION_H
|
|
|
|
#define FISH_BUILTIN_FUNCTION_H
|
|
|
|
|
2017-06-16 08:57:37 +08:00
|
|
|
#include "common.h"
|
2018-02-10 13:53:06 +08:00
|
|
|
#include "parse_tree.h"
|
2017-06-16 08:57:37 +08:00
|
|
|
|
2017-06-14 03:56:20 +08:00
|
|
|
class parser_t;
|
|
|
|
struct io_streams_t;
|
|
|
|
|
2017-06-16 08:57:37 +08:00
|
|
|
int builtin_function(parser_t &parser, io_streams_t &streams, const wcstring_list_t &c_args,
|
2020-04-03 10:43:34 +08:00
|
|
|
const parsed_source_ref_t &source,
|
|
|
|
tnode_t<grammar::block_statement> func_node);
|
2017-06-14 03:56:20 +08:00
|
|
|
#endif
|