mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
11 lines
257 B
C++
11 lines
257 B
C++
// Prototypes for executing builtin_emit function.
|
|
#ifndef FISH_BUILTIN_EMIT_H
|
|
#define FISH_BUILTIN_EMIT_H
|
|
|
|
#include "maybe.h"
|
|
|
|
class parser_t;
|
|
struct io_streams_t;
|
|
|
|
maybe_t<int> builtin_emit(parser_t &parser, io_streams_t &streams, wchar_t **argv);
|
|
#endif
|