fish-shell/src/builtin_fg.h

12 lines
249 B
C
Raw Normal View History

2017-06-14 20:45:57 +00:00
// Prototypes for executing builtin_fg function.
#ifndef FISH_BUILTIN_FG_H
#define FISH_BUILTIN_FG_H
#include "maybe.h"
2017-06-14 20:45:57 +00:00
class parser_t;
struct io_streams_t;
maybe_t<int> builtin_fg(parser_t &parser, io_streams_t &streams, wchar_t **argv);
2017-06-14 20:45:57 +00:00
#endif