diff options
Diffstat (limited to 'shell/shell_common.h')
-rw-r--r-- | shell/shell_common.h | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/shell/shell_common.h b/shell/shell_common.h index 875fd9ea7..a1323021d 100644 --- a/shell/shell_common.h +++ b/shell/shell_common.h | |||
@@ -30,6 +30,17 @@ int FAST_FUNC is_well_formed_var_name(const char *s, char terminator); | |||
30 | 30 | ||
31 | /* Builtins */ | 31 | /* Builtins */ |
32 | 32 | ||
33 | struct builtin_read_params { | ||
34 | int read_flags; | ||
35 | void FAST_FUNC (*setvar)(const char *name, const char *val); | ||
36 | char **argv; | ||
37 | const char *ifs; | ||
38 | const char *opt_n; | ||
39 | const char *opt_p; | ||
40 | const char *opt_t; | ||
41 | const char *opt_u; | ||
42 | const char *opt_d; | ||
43 | }; | ||
33 | enum { | 44 | enum { |
34 | BUILTIN_READ_SILENT = 1 << 0, | 45 | BUILTIN_READ_SILENT = 1 << 0, |
35 | BUILTIN_READ_RAW = 1 << 1, | 46 | BUILTIN_READ_RAW = 1 << 1, |
@@ -40,16 +51,7 @@ enum { | |||
40 | // shell_builtin_read(setvar,argv,ifs,read_flags) | 51 | // shell_builtin_read(setvar,argv,ifs,read_flags) |
41 | //#endif | 52 | //#endif |
42 | const char* FAST_FUNC | 53 | const char* FAST_FUNC |
43 | shell_builtin_read(void FAST_FUNC (*setvar)(const char *name, const char *val), | 54 | shell_builtin_read(struct builtin_read_params *params); |
44 | char **argv, | ||
45 | const char *ifs, | ||
46 | int read_flags, | ||
47 | const char *opt_n, | ||
48 | const char *opt_p, | ||
49 | const char *opt_t, | ||
50 | const char *opt_u, | ||
51 | const char *opt_d | ||
52 | ); | ||
53 | 55 | ||
54 | int FAST_FUNC | 56 | int FAST_FUNC |
55 | shell_builtin_ulimit(char **argv); | 57 | shell_builtin_ulimit(char **argv); |