split builtin status and read into its own module

This commit is contained in:
Kurtis Rader
2017-06-12 21:34:24 -07:00
parent ef8a0c93ea
commit e7f87c08e1
6 changed files with 818 additions and 716 deletions

9
src/builtin_read.h Normal file
View File

@@ -0,0 +1,9 @@
// Prototypes for executing builtin_read function.
#ifndef FISH_BUILTIN_READ_H
#define FISH_BUILTIN_READ_H
class parser_t;
struct io_streams_t;
int builtin_read(parser_t &parser, io_streams_t &streams, wchar_t **argv);
#endif