fish-shell/src/builtin_fg.h

10 lines
220 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
class parser_t;
struct io_streams_t;
int builtin_fg(parser_t &parser, io_streams_t &streams, wchar_t **argv);
#endif